-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-key-manager.code-workspace
More file actions
38 lines (38 loc) · 1.88 KB
/
Copy pathapi-key-manager.code-workspace
File metadata and controls
38 lines (38 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
// ${userHome} Path to the user's home folder
// ${workspaceFolder} Path to the folder opened in VS Code
// ${workspaceFolderBasename} Name of the folder opened in VS Code without Slashes.
// ${file} Opened file
// ${fileWorkspaceFolder} Opened file's workspace folder
// ${relativeFile} Opened file relative to ${workspaceFolder}
// ${relativeFileDirname} Opened file's dirname relative to ${workspaceFolder}
// ${fileBasename} Opened file's basename
// ${fileBasenameNoExtension} Opened file's basename with no file extension
// ${fileExtname} Opened file's extension
// ${fileDirname} Opened file's folder path
// ${fileDirnameBasename} Opened file's folder name
// ${cwd} The task runner's CWD upon startup of VSCode
// ${lineNumber} Current selected line number in the active file
// ${selectedText} Current selected text in the active file
// ${execPath} Path to the running VSCode executable
// ${defaultBuildTask} Name of the default build task
// ${pathSeparator} Path separator for the current OS
// ${/} Path separator for the current OS (Alias)
// ${workspaceFolder:FOLDER_NAME} Namespace scoped path to FOLDER_NAME
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.cwd": "${workspaceFolder}",
// "powershell.cwd": "${workspaceFolder}",
"powershell.startAutomatically": false,
"powershell.integratedConsole.showOnStartup": false,
// "files.defaultLanguage": "powershell",
"editor.wordSeparators": "`~!@#$%^&*()=+[{]}\\|;:'\",.<>/?",
"editor.tabSize": 4,
"prettier.tabWidth": 4,
"editor.insertSpaces": true,
}
}