8
8
import * as vscode from 'vscode' ;
9
9
import { getLocation , visit } from 'jsonc-parser' ;
10
10
import * as path from 'path' ;
11
+ import * as nls from 'vscode-nls' ;
12
+
13
+ const localize = nls . loadMessageBundle ( ) ;
11
14
12
15
const decoration = vscode . window . createTextEditorDecorationType ( {
13
16
color : '#b1b1b1'
14
17
} ) ;
15
18
16
- export function activate ( context ) {
19
+ export function activate ( context ) : void {
17
20
18
21
//keybindings.json command-suggestions
19
22
context . subscriptions . push ( registerKeybindingsCompletions ( ) ) ;
20
23
24
+ //settings.json suggestions
25
+ context . subscriptions . push ( registerSettingsCompletions ( ) ) ;
26
+
21
27
// launch.json decorations
22
28
context . subscriptions . push ( vscode . window . onDidChangeActiveTextEditor ( editor => updateLaunchJsonDecorations ( editor ) , null , context . subscriptions ) ) ;
23
29
context . subscriptions . push ( vscode . workspace . onDidChangeTextDocument ( event => {
@@ -38,23 +44,50 @@ function registerKeybindingsCompletions(): vscode.Disposable {
38
44
if ( location . path [ 1 ] === 'command' ) {
39
45
40
46
const range = document . getWordRangeAtPosition ( position ) || new vscode . Range ( position , position ) ;
41
- return commands . then ( ids => ids . map ( id => newCompletionItem ( id , range ) ) ) ;
47
+ return commands . then ( ids => ids . map ( id => newCompletionItem ( JSON . stringify ( id ) , range ) ) ) ;
42
48
}
43
49
}
44
50
} ) ;
45
51
}
46
52
47
- function newCompletionItem ( text : string , range : vscode . Range ) {
48
- const item = new vscode . CompletionItem ( JSON . stringify ( text ) ) ;
53
+ function registerSettingsCompletions ( ) : vscode . Disposable {
54
+ return vscode . languages . registerCompletionItemProvider ( { language : 'json' , pattern : '**/settings.json' } , {
55
+
56
+ provideCompletionItems ( document , position , token ) {
57
+ const completions : vscode . CompletionItem [ ] = [ ] ;
58
+ const location = getLocation ( document . getText ( ) , document . offsetAt ( position ) ) ;
59
+
60
+ // window.title
61
+ if ( location . path [ 0 ] === 'window.title' ) {
62
+ const range = document . getWordRangeAtPosition ( position ) || new vscode . Range ( position , position ) ;
63
+
64
+ completions . push ( newCompletionItem ( '${activeEditorName}' , range , localize ( 'activeEditorName' , "e.g. myFile.txt" ) ) ) ;
65
+ completions . push ( newCompletionItem ( '${activeFilePath}' , range , localize ( 'activeFilePath' , "e.g. /Users/Development/myProject/myFile.txt" ) ) ) ;
66
+ completions . push ( newCompletionItem ( '${rootName}' , range , localize ( 'rootName' , "e.g. myProject" ) ) ) ;
67
+ completions . push ( newCompletionItem ( '${rootPath}' , range , localize ( 'rootPath' , "e.g. /Users/Development/myProject" ) ) ) ;
68
+ completions . push ( newCompletionItem ( '${appName}' , range , localize ( 'appName' , "e.g. VS Code" ) ) ) ;
69
+ completions . push ( newCompletionItem ( '${dirty}' , range , localize ( 'dirty' , "a dirty indicator if the active editor is dirty" ) ) ) ;
70
+ completions . push ( newCompletionItem ( '${separator}' , range , localize ( 'separator' , "a conditional separator (' - ') that only shows when surrounded by variables with values" ) ) ) ;
71
+ }
72
+
73
+ return Promise . resolve ( completions ) ;
74
+ }
75
+ } ) ;
76
+ }
77
+
78
+ function newCompletionItem ( text : string , range : vscode . Range , description ?: string ) : vscode . CompletionItem {
79
+ const item = new vscode . CompletionItem ( text ) ;
49
80
item . kind = vscode . CompletionItemKind . Value ;
81
+ item . detail = description ;
50
82
item . textEdit = {
51
83
range,
52
84
newText : item . label
53
85
} ;
86
+
54
87
return item ;
55
88
}
56
89
57
- function updateLaunchJsonDecorations ( editor : vscode . TextEditor | undefined ) {
90
+ function updateLaunchJsonDecorations ( editor : vscode . TextEditor | undefined ) : void {
58
91
if ( ! editor || path . basename ( editor . document . fileName ) !== 'launch.json' ) {
59
92
return ;
60
93
}
@@ -85,5 +118,4 @@ function updateLaunchJsonDecorations(editor: vscode.TextEditor | undefined) {
85
118
} ) ;
86
119
87
120
editor . setDecorations ( decoration , ranges ) ;
88
- }
89
-
121
+ }
0 commit comments