We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b1b107 commit 8c11618Copy full SHA for 8c11618
README.md
@@ -81,4 +81,4 @@ body = "// FIXME: $1"
81
simple-completion-language-server fetch-snippets
82
```
83
84
-命令来自动拉取 `https://github.com/rafamadriz/friendly-snippets` 仓库代码片段(它会自动生成配置文件)
+命令来调用 Nodejs 自动拉取 `https://github.com/rafamadriz/friendly-snippets` 仓库代码片段(它会自动生成配置文件)
src/server.rs
@@ -59,6 +59,7 @@ impl LanguageServer for Backend {
59
trigger_characters: Some(vec![std::path::MAIN_SEPARATOR_STR.to_string()]),
60
..CompletionOptions::default()
61
}),
62
+ definition_provider: Some(OneOf::Left(false)),
63
..Default::default()
64
},
65
server_info: Some(ServerInfo {
0 commit comments