File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class PythonLanguageClient extends AutoLanguageClient {
1313 return "pyls" ;
1414 }
1515 startServerProcess ( projectPath ) {
16- const childProcess = cp . spawn ( "pyls" , {
16+ const childProcess = cp . spawn ( atom . config . get ( "ide-python.pylsPath" ) , {
1717 cwd : projectPath
1818 } ) ;
1919 childProcess . on ( "error" , err =>
Original file line number Diff line number Diff line change 1212 "dependencies" : {
1313 "atom-languageclient" : " ^0.6.1"
1414 },
15- "enhancedScopes" : [
16- " source.python"
17- ],
15+ "enhancedScopes" : [" source.python" ],
16+ "configSchema" : {
17+ "pylsPath" : {
18+ "title" : " Python Language Server Path" ,
19+ "type" : " string" ,
20+ "default" : " pyls" ,
21+ "description" : " Absolute path to ```pyls``` executable."
22+ }
23+ },
1824 "consumedServices" : {
1925 "linter-indie" : {
2026 "versions" : {
You can’t perform that action at this time.
0 commit comments