We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf42f9 commit 1feeb75Copy full SHA for 1feeb75
lib/main.js
@@ -11,21 +11,21 @@ class PythonLanguageClient extends AutoLanguageClient {
11
getGrammarScopes() {
12
return ["source.python"];
13
}
14
+
15
getLanguageName() {
16
return "Python";
17
18
19
getServerName() {
20
return "pyls";
21
22
- postInitialization({ connection }) {
- this._disposable.add(
23
- atom.config.observe("ide-python.pylsPlugins", params => {
24
- connection.didChangeConfiguration({
25
- settings: { pyls: { plugins: params } }
26
- });
27
- })
28
- );
+ getRootConfigurationKey() {
+ return "ide-python.pylsPlugins";
+ }
+ mapConfigurationObject(configuration) {
+ return { pyls: { plugins: configuration } }
29
30
31
async startServerProcess(projectPath) {
0 commit comments