File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 44
44
| ` :show-directory ` , ` :pwd ` | Show the current working directory. |
45
45
| ` :encoding ` | Set encoding. Based on ` https://encoding.spec.whatwg.org ` . |
46
46
| ` :reload ` | Discard changes and reload from the source file. |
47
- | ` :lsp-reload ` | Reload the Language Server that is in use by the current doc |
47
+ | ` :lsp-restart ` | Restarts the Language Server that is in use by the current doc |
48
48
| ` :tree-sitter-scopes ` | Display tree sitter scopes, primarily for theming and development. |
49
49
| ` :debug-start ` , ` :dbg ` | Start a debug session from a given template with given parameters. |
50
50
| ` :debug-remote ` , ` :dbg-tcp ` | Connect to a debug adapter by TCP address and start a debugging session from a given template with given parameters. |
Original file line number Diff line number Diff line change @@ -379,7 +379,7 @@ impl Registry {
379
379
struct NewClientResult ( Arc < Client > , UnboundedReceiver < ( usize , Call ) > ) ;
380
380
381
381
/// start_client takes both a LanguageConfiguration and a LanguageServerConfiguration to ensure that
382
- /// it is only called when it makes sense, specifically, start_client shouldn't care whether .
382
+ /// it is only called when it makes sense.
383
383
fn start_client (
384
384
id : usize ,
385
385
config : & LanguageConfiguration ,
Original file line number Diff line number Diff line change @@ -1863,9 +1863,9 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1863
1863
completer : None ,
1864
1864
} ,
1865
1865
TypableCommand {
1866
- name : "lsp-reload " ,
1866
+ name : "lsp-restart " ,
1867
1867
aliases : & [ ] ,
1868
- doc : "Reload the Language Server that is in use by the current doc" ,
1868
+ doc : "Restarts the Language Server that is in use by the current doc" ,
1869
1869
fun : lsp_restart,
1870
1870
completer : None ,
1871
1871
} ,
You can’t perform that action at this time.
0 commit comments