Skip to content

Commit

Permalink
Align with changes in NpmClientHandler API (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored May 10, 2020
1 parent 9ef90c9 commit ab3efc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"command": "edit_settings",
"args": {
"base_file": "${packages}/LSP-bash/LSP-bash.sublime-settings",
"default": "// Settings in here override those in \"LSP-bash/LSP-bash.sublime-settings\",\n\n{\n\t$0\n}\n",
"default": "// Settings in here override those in \"LSP-bash/LSP-bash.sublime-settings\"\n\n{\n\t$0\n}\n",
},
},
],
Expand Down
3 changes: 2 additions & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ class LspBashPlugin(NpmClientHandler):
server_directory, 'node_modules', 'bash-language-server', 'bin', 'main.js'
)

def get_binary_arguments(self):
@classmethod
def get_binary_arguments(cls):
return ['start']

0 comments on commit ab3efc0

Please sign in to comment.