Skip to content

Commit 928f310

Browse files
committed
OCaml: Add implIntf
*This is the first of a series of PR I aim to do to improve the ocaml-lsp experience in lsp-mode* This PR exposes `lsp-ocaml-find-alternate-file` that allows to find the file interface corresponding to an implementation or the implementation corresponding to an interface. This function is quite simple for the moment since I first needed to make sure that the LSP requests were working as expected. Following PRs will add more possibilities
1 parent 4673582 commit 928f310

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

clients/lsp-ocaml.el

+21-7
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,14 @@
6161
(define-obsolete-variable-alias 'lsp-merlin 'lsp-ocaml-lsp-server "lsp-mode 6.1")
6262
(define-obsolete-variable-alias 'lsp-merlin-command 'lsp-ocaml-lsp-server-command "lsp-mode 6.1")
6363

64+
;;; -------------------
65+
;;; OCaml-lsp custom variables
66+
;;; -------------------
67+
6468
(defcustom lsp-ocaml-lsp-server-command
6569
'("ocamllsp")
66-
"Command to start ocaml-language-server."
67-
:group 'lsp-ocaml
70+
"Command to start ocaml-lsp-server."
71+
:group 'lsp-ocaml-lsp-server
6872
:type '(choice
6973
(string :tag "Single string value")
7074
(repeat :tag "List of string values"
@@ -80,7 +84,7 @@
8084

8185
(defcustom lsp-cut-signature 'space
8286
"If non-nil, signatures returned on hover will not be split on newline."
83-
:group 'lsp-ocaml
87+
:group 'lsp-ocaml-lsp-server
8488
:type '(choice (symbol :tag "Default behaviour" 'cut)
8589
(symbol :tag "Display all the lines with spaces" 'space)))
8690

@@ -130,8 +134,10 @@ An example of function using STORABLE is:
130134
ntype)))
131135
type)))
132136

137+
;;; -------------------
133138
;;; OCaml-lsp extensions interface
134-
;;;
139+
;;; -------------------
140+
135141
;;; The following functions are used to create an interface between custom OCaml-lsp requests and lsp-mode
136142

137143
(defun lsp-ocaml--switch-impl-intf ()
@@ -145,12 +151,18 @@ https://github.com/ocaml/ocaml-lsp/blob/master/ocaml-lsp-server/docs/ocamllsp/sw
145151
uris
146152
(lsp--warn "Your version of ocaml-lsp doesn't support the switchImplIntf extension")))
147153

148-
;;; OCaml-lsp utilities
154+
;;; -------------------
155+
;;; OCaml-lsp general utilities
156+
;;; -------------------
149157

150158
(defun lsp-ocaml--has-one-element-p (lst)
151159
"Returns t if LST contains only one element."
152160
(and lst (= (length lst) 1)))
153161

162+
;;; -------------------
163+
;;; OCaml-lsp URI utilities
164+
;;; -------------------
165+
154166
(defun lsp-ocaml--load-uri (uri &optional other-window)
155167
"Check if URI exists and open its buffer or create a new one.
156168
@@ -181,9 +193,11 @@ If OTHER-WINDOW is not nil, open the buffer in an other window."
181193
(selected-file (completing-read "Choose an alternate file " filenames)))
182194
(nth (cl-position selected-file filenames :test #'string=) uris)))))
183195

196+
;;; -------------------
184197
;;; OCaml-lsp extensions
185-
;;;
186-
;;; The following functions are interactive implementations of the custom OCaml-lsp requests
198+
;;; -------------------
199+
200+
;;; The following functions are interactive implementations of the OCaml-lsp requests
187201

188202
(defun lsp-ocaml-find-alternate-file ()
189203
"Return the URI corresponding to the alternate file if there's only one or prompt for a choice."

0 commit comments

Comments
 (0)