This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-08-18
Channels
- # announcements (2)
- # beginners (95)
- # cider (2)
- # cljdoc (5)
- # cljs-dev (11)
- # cljsrn (2)
- # clojure (12)
- # clojure-spec (11)
- # clojure-uk (3)
- # clojurescript (27)
- # code-reviews (4)
- # cursive (9)
- # data-science (1)
- # datomic (1)
- # emacs (7)
- # fulcro (13)
- # graalvm (28)
- # graphql (6)
- # nrepl (6)
- # off-topic (13)
- # re-frame (3)
- # rewrite-clj (2)
- # shadow-cljs (29)
- # spacemacs (1)
- # sql (4)
- # tools-deps (8)
- # vim (20)
- # yada (7)
Also does anyone know how to remap FireplaceDjump? Ideally it'd be called via gd
rather than [C-D
This remapping does not seem to work on neovim unfortunately
I tried au Syntax Clojure nnoremap gd <Plug>Fireplace Djumpw
too but to no avail
This works
augroup clojure
au Syntax clojure nmap <buffer> gd <Plug>FireplaceDjump
augroup END
Just generally using an ftplugin file for clojure-specific stuff. Rather than an autogroup.
https://github.com/tpope/vim-apathy/blob/master/after/ftplugin/javascript_apathy.vim this happens to be in my browser history
👍 4
replied to a thread:nmap <Plug>Fireplace DJumpw
This works
augroup clojure
au Syntax clojure nmap <buffer> gd <Plug>FireplaceDjump
augroup END