Skip to content

Commit

Permalink
Merge pull request #12 from tarides/display-error-message-after-jump
Browse files Browse the repository at this point in the history
Display the error when jump en prev/next error
  • Loading branch information
xvw authored Dec 30, 2024
2 parents 5c2baac + 6ce6c01 commit 7bb5b4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocaml-eglot.el
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ Otherwise, `merlin-construct' only includes constructors."
(defun ocaml-eglot-error-next ()
"Jump to the next error."
(interactive)
(flymake-goto-next-error))
(call-interactively #'flymake-goto-next-error))

(defun ocaml-eglot-error-prev ()
"Jump to the previous error."
(interactive)
(flymake-goto-prev-error))
(call-interactively #'flymake-goto-prev-error))

;; Jump to definition

Expand Down

0 comments on commit 7bb5b4e

Please sign in to comment.