Removed mklink for git

This commit is contained in:
2024-11-06 12:39:13 -07:00
parent a6071a4073
commit 11bb8c848c
263 changed files with 19951 additions and 1508 deletions

View File

@ -1,13 +1,13 @@
---
type: "topic"
assigned: ""
created: "2024-01-14T02:18:17.869Z"
updated: "2024-02-02T22:15:40.203Z"
assigned: ''
created: 2024-01-14T02:18:17.869Z
type: topic
updated: 2024-07-12T16:54:05.853Z
---
# VSCode
## Relations
## References
- [PowerShell](powershell.md)
- [npm](npm.md)
@ -21,9 +21,7 @@ Compress-Archive -CompressionLevel NoCompression -Path 'C:\Users\phares\.vscode-
Compress-Archive -CompressionLevel NoCompression -Path 'C:\Users\phares\.vscode-insiders\extensions' -DestinationPath 'D:\Downloads\2023\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip'
```
## Tasks
### PowerShell
## PowerShell
```json
{
@ -40,7 +38,7 @@ Compress-Archive -CompressionLevel NoCompression -Path 'C:\Users\phares\.vscode-
}
```
### PowerShell - Go
## PowerShell - Go
```json
{
@ -57,7 +55,7 @@ Compress-Archive -CompressionLevel NoCompression -Path 'C:\Users\phares\.vscode-
}
```
### PowerShell - dotnet AOT
## PowerShell - dotnet AOT
```json
{
@ -68,7 +66,7 @@ Compress-Archive -CompressionLevel NoCompression -Path 'C:\Users\phares\.vscode-
}
```
### dotnet
## dotnet
```json
{
@ -131,7 +129,7 @@ Compress-Archive -CompressionLevel NoCompression -Path 'C:\Users\phares\.vscode-
}
```
### npm
## npm
```json
{
@ -141,6 +139,8 @@ Compress-Archive -CompressionLevel NoCompression -Path 'C:\Users\phares\.vscode-
}
```
## VSCode Extension (vsce)
```bash
mkdir yo-example
cd yo-example
@ -180,6 +180,8 @@ L:\Git\yo-web>node "node_modules\yo\lib\cli.js" code
node "node_modules\@vscode\vsce\vsce" package
```
## Extension Archive
```bash
move "D:\Tmp\Phares\VSCodeUserSetup Install" "D:\Tmp\Phares\VSCodeUserSetup-Install"
rmdir /S /Q "C:\Users\MESPhares\.vscode\extensions"
@ -188,6 +190,8 @@ powershell -command "Expand-Archive D:\Tmp\Phares\VSCodeUserSetup-Install\vscode
powershell -command "Expand-Archive D:\Tmp\Phares\VSCodeUserSetup-Install\vscode-1.81.0-insider-268f34992c5d826a08e4b72013f95af9683044ea-extensions.zip C:\Users\MESPhares\.vscode-insiders"
```
## VSCode Settings Repo
```bash
L:
mkdir "L:\Git"
@ -258,12 +262,54 @@ mklink /J "L:\DevOps\Mesa_FI\VS-Code-Settings-OSS-MESPhares\.thunder-client" "C:
mklink /J "L:\DevOps\Mesa_FI\VS-Code-Settings-Insiders-MESPhares\.thunder-client" "C:\Users\phares\AppData\Roaming\Code\User\globalStorage\rangav.vscode-thunder-client\collections"
```
## Bash Config
```bash
# "vsdbg.exe" git "bash" error
$ tools.csharp-2.23.15-win32-x64\\.debugger\\x86_64\\vsdbg.exe --interpreter=vscode --connection=91a5ee29186b4800bbe25d2b764859cc
bash: tools.csharp-2.23.15-win32-x64\\.debugger\\x86_64\\vsdbg.exe: No such file or directory
```
## Search
```conf
**\History\*
```
## Extension Compare
```bash Fri Jul 12 2024 11:41:08 GMT-0700 (Mountain Standard Time)
code "C:\Users\phares\.vscode\extensions\extensions.json"
codium "C:\Users\phares\.vscode-oss\extensions\extensions.json"
code-insiders "C:\Users\phares\.vscode-insiders\extensions\extensions.json"
# https://github.com/jqlang/jq/wiki/For-JSONPath-users
# $..identifier.id
```
```js Sat Jun 15 2024 13:13:30 GMT-0700 (Mountain Standard Time)
// https://jsoneditoronline.org/#left=local.moloto&right=local.rihama
function query (data) {
return _.chain(data)
.orderBy(['identifier.id'], ['asc'])
.map(item => ({
"id": item?.identifier?.id,
"version": item?.version,
"publisherDisplayName": item?.metadata?.publisherDisplayName,
"installedTimestamp": item?.metadata?.installedTimestamp,
"isPreReleaseVersion": item?.metadata?.isPreReleaseVersion,
}))
.value()
}
```
## VSCode Settings
```json Sun Jun 30 2024 14:27:31 GMT-0700 (Mountain Standard Time)
"files.associations": { "*.func": "shellscript" }
```
## VSCode Web Host
```bash Fri Jul 12 2024 11:17:11 GMT-0700 (Mountain Standard Time)
code serve-web
```