hoon-mode.el
hoon-mode.el copied to clipboard
I have this snippet of code: ```emacs-lisp (defun org-babel-execute:hoon (body params) "Execute hoon code." (with-temp-buffer (let* ((stderr (get-buffer-create "hoon-eval-stderr")) (proc (make-process :name "hoon-eval" :buffer (current-buffer) :command '("urbit" "eval") :connection-type 'pipe...
Since the LSP configuration is set in `eval-after-load`, once `lsp-mode` starts, the hoon-language-server configs cannot be updated. I ended up copy-pasting the client connection creation into *scratch* then executing it...
It would be neat to have tree-based navigation hotkeys to jump around more efficiently, in the vein of https://github.com/countvajhula/symex.el This probably shouldn't be part of `hoon-mode.el` - rather it would...
I am trying to get the commands to work to eval regions and buffers but it requires herb and I can't figure out what that is. I have tried searching...