FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
VSpaceCode/src/constants.ts at master · VSpaceCode/VSpaceCode · GitHub
VSpaceCode
/
VSpaceCode
Public
Notifications
You must be signed in to change notification settings
Fork
129
Star
1.5k
Code
Issues
66
Pull requests
13
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
VSpaceCode
/
src
/
constants.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
53 lines (46 loc) · 1.97 KB
Breadcrumbs
VSpaceCode
/
src
/
constants.ts
Copy path
File metadata and controls
53 lines (46 loc) · 1.97 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
export
const
extensionId
=
"vspacecode"
;
export
const
publisherId
=
"VSpaceCode"
;
export
const
extensionQualifiedId
=
`
${
publisherId
}
.
${
extensionId
}
`
;
export
const
spaceCmdId
=
`
${
extensionId
}
.space`
;
export
enum
CommandId
{
ShowSpaceMenu
=
"vspacecode.space"
,
ShowMagitRefMenu
=
"vspacecode.showMagitRefMenu"
,
ShowMagitRefreshMenu
=
"vspacecode.showMagitRefreshMenu"
,
Configure
=
"vspacecode.configure"
,
ConfigureSettings
=
"vspacecode.configureSettings"
,
ConfigureKeybindings
=
"vspacecode.configureKeybindings"
,
OpenDocumentationUrl
=
"vspacecode.openDocumentationUrl"
,
OpenWalkthrough
=
"workbench.action.openWalkthrough"
,
CopyPath
=
"vspacecode.copyPath"
,
CopyPathWithLine
=
"vspacecode.copyPathWithLine"
,
CopyPathWithLineColumn
=
"vspacecode.copyPathWithLineColumn"
,
CopyDirectoryPath
=
"vspacecode.copyDirectoryPath"
,
CopyRelativePath
=
"vspacecode.copyRelativePath"
,
CopyRelativePathWithLine
=
"vspacecode.copyRelativePathWithLine"
,
CopyRelativePathWithLineColumn
=
"vspacecode.copyRelativePathWithLineColumn"
,
CopyRelativeDirectoryPath
=
"vspacecode.copyRelativeDirectoryPath"
,
CopyFilename
=
"vspacecode.copyFilename"
,
CopyFilenameBase
=
"vspacecode.copyFilenameBase"
,
CopyWholeBuffer
=
"vspacecode.copyWholeBuffer"
,
RegisterWhichKey
=
"whichkey.register"
,
ShowWhichKey
=
"whichkey.show"
,
}
export
enum
WalkthroughId
{
Welcome
=
"vspacecode.welcome"
,
}
export
enum
GlobalState
{
SpacecodeVersion
=
"vspacecodeVersion"
,
}
export
enum
ConfigKey
{
Bindings
=
"bindings"
,
Overrides
=
"bindingOverrides"
,
RefBindings
=
"magitRefBindings"
,
RefreshBindings
=
"magitRefreshBindings"
,
}
export
const
BindingsId
=
{
VSpaceCode
:
`
${
extensionId
}
.
${
ConfigKey
.
Bindings
}
`
,
Overrides
:
`
${
extensionId
}
.
${
ConfigKey
.
Overrides
}
`
,
RefBindings
:
`
${
extensionId
}
.
${
ConfigKey
.
RefBindings
}
`
,
RefreshBindings
:
`
${
extensionId
}
.
${
ConfigKey
.
RefreshBindings
}
`
,
}
;
export
const
defaultStatusBarTimeout
=
5000
;
Back
|
FazBrowse Home
|
New Git URL