dhall-mode
dhall-mode copied to clipboard
Option to jump to definitions?
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))
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 Yeah that sounds good to me :+1: I'll give it a go when I get some time
@psibi Ahh, TIL... dhall tags works fairly well
@gamb I guess adding support based to dhall-mode based on dhall tags would be a nice approach.