File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 2020 "atom-languageclient" : " ^0.9.2"
2121 },
2222 "enhancedScopes" : [
23- " source.shell"
23+ " source.shell" ,
24+ " bash"
2425 ],
2526 "providedServices" : {
2627 "autocomplete.provider" : {
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## 1.0.11
4+
5+ - Add ` bash ` to list of supported scopes.
6+ I don't think bash was distinguishable from ` source.shell ` before, but my
7+ hunch is that it was introduced when they release the new code-folding that's
8+ based on tree-sitter.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const {AutoLanguageClient} = require('atom-languageclient')
55class BashLanguageClient extends AutoLanguageClient {
66
77 getGrammarScopes ( ) {
8- return [ 'source.shell' ]
8+ return [ 'source.shell' , 'bash' ]
99 }
1010
1111 getLanguageName ( ) {
You can’t perform that action at this time.
0 commit comments