File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 98
98
" onLanguage:go" ,
99
99
" onLanguage:go.sum" ,
100
100
" onLanguage:gotmpl" ,
101
+ " onLanguage:go.asm" ,
101
102
" onDebugInitialConfigurations" ,
102
103
" onDebugResolve:go" ,
103
104
" onWebviewPanel:welcomeGo"
129
130
" Go"
130
131
]
131
132
},
133
+ {
134
+ "id" : " go.asm" ,
135
+ "extensions" : [
136
+ " .s"
137
+ ],
138
+ "aliases" : [
139
+ " Go Assembly"
140
+ ]
141
+ },
132
142
{
133
143
"id" : " go.mod" ,
134
144
"filenames" : [
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ export function isGoFile(document: vscode.TextDocument): boolean {
21
21
export const GoDocumentSelector = [
22
22
// gopls handles only file URIs.
23
23
{ language : 'go' , scheme : 'file' } ,
24
+ { language : 'go.asm' , scheme : 'file' } ,
24
25
{ language : 'go.mod' , scheme : 'file' } ,
25
26
{ language : 'go.sum' , scheme : 'file' } ,
26
27
{ language : 'go.work' , scheme : 'file' } ,
You can’t perform that action at this time.
0 commit comments