dhall-mode icon indicating copy to clipboard operation
dhall-mode copied to clipboard

Option to jump to definitions?

Open gamb opened this issue 5 years ago • 4 comments

Short of digging into dhall-lsp-server, the cheapest option I could find to hop between files was:

(defun jump-to-file-at-point ()
  (interactive)
  (ring-insert find-tag-marker-ring (point-marker))
  (find-file-at-point))

gamb avatar May 03 '20 18:05 gamb

I guess a much better way would be to add support for dhall in the dumb-jump package: https://github.com/jacktasia/dumb-jump

psibi avatar May 04 '20 04:05 psibi

@psibi Yeah that sounds good to me :+1: I'll give it a go when I get some time

gamb avatar May 04 '20 18:05 gamb

@psibi Ahh, TIL... dhall tags works fairly well

gamb avatar May 04 '20 18:05 gamb

@gamb I guess adding support based to dhall-mode based on dhall tags would be a nice approach.

psibi avatar May 07 '20 10:05 psibi