Skip to content

Commit 515702b

Browse files
daveyarwoodhkupty
authored andcommitted
map gd (not <C-]>) to AcidGoto (#54)
1 parent d9c2d70 commit 515702b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/acid.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ DEFAULT MAPPINGS *acid-mapping*
9494
{key} {function}
9595
-------- ------------------------
9696
K Shows documentation for the symbol below cursor
97-
<C-]> Goes to definition of symbol below cursor (`AcidGoto`)
97+
gd Goes to definition of symbol below cursor (`AcidGoto`)
9898
cp<motion> Sends the block to nrepl for evaluation (`AcidEval`)
9999
cpp Evaluating the whole block below cursor (`AcidEval`)
100100

plugin/acid.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ augroup END
8383
if !g:acid_no_default_keymappings
8484
augroup acid-keymappings
8585
autocmd!
86-
autocmd FileType clojure nmap <buffer> <silent> <C-]> <Plug>(acid-go-to)
86+
autocmd FileType clojure nmap <buffer> <silent> gd <Plug>(acid-go-to)
8787
autocmd FileType clojure nmap <buffer> <silent> K <Plug>(acid-docs)
8888
autocmd FileType clojure nmap <buffer> <silent> <C-c>x <Plug>(acid-eval-cmdline)
8989
autocmd FileType clojure imap <buffer> <silent> <C-c>x <Plug>(acid-eval-cmdline)

0 commit comments

Comments
 (0)