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 4c5360b commit a7479efCopy full SHA for a7479ef
clients/lsp-ruby-lsp.el
@@ -45,10 +45,16 @@
45
:group 'lsp-ruby-lsp
46
:package-version '(lsp-mode . "9.0.1"))
47
48
+(defcustom lsp-ruby-lsp-server-command '("ruby-lsp")
49
+ "Command to start ruby-lsp language server."
50
+ :type '(repeat string)
51
+ :group 'lsp-ruby-lsp
52
+ :package-version '(lsp-mode . "9.0.1"))
53
+
54
(defun lsp-ruby-lsp--build-command ()
55
(append
56
(if lsp-ruby-lsp-use-bundler '("bundle" "exec"))
- '("ruby-lsp")))
57
+ lsp-ruby-lsp-server-command))
58
59
(defun lsp-ruby-lsp--open-file (arg_hash)
60
"Open a file. This function is for code-lens provided by ruby-lsp-rails."
0 commit comments