File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Bash Language Server
2
2
3
+ ## 5.3.1
4
+
5
+ - Clear diagnostics when closing document https://github.com/bash-lsp/bash-language-server/pull/1135
6
+
3
7
## 5.3.0
4
8
5
9
- Add support for formatting using shfmt (if installed). https://github.com/bash-lsp/bash-language-server/pull/1136
Original file line number Diff line number Diff line change 3
3
"description" : " A language server for Bash" ,
4
4
"author" : " Mads Hartmann" ,
5
5
"license" : " MIT" ,
6
- "version" : " 5.3.0 " ,
6
+ "version" : " 5.3.1 " ,
7
7
"main" : " ./out/server.js" ,
8
8
"typings" : " ./out/server.d.ts" ,
9
9
"bin" : {
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ export default class BashServer {
163
163
} )
164
164
165
165
this . documents . onDidClose ( ( event ) => {
166
+ connection . sendDiagnostics ( { uri : event . document . uri , diagnostics : [ ] } )
166
167
delete this . uriToCodeActions [ event . document . uri ]
167
168
} )
168
169
You can’t perform that action at this time.
0 commit comments