aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/fixed_join.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-04 17:33:06 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-04 17:33:06 +1300
commit85b05425ed3be65439fefa5f0074d3d7f18217f9 (patch)
tree6785858b291dcc6bbaddd5b363b28261b37a6401 /vim/plugin/fixed_join.vim
parentMove Vim background detection logic into plugin (diff)
downloaddotfiles-85b05425ed3be65439fefa5f0074d3d7f18217f9.tar.gz
dotfiles-85b05425ed3be65439fefa5f0074d3d7f18217f9.zip
Don't suggest mappings in Vim plugin comments
Pretty useless, really.
Diffstat (limited to 'vim/plugin/fixed_join.vim')
-rw-r--r--vim/plugin/fixed_join.vim2
1 files changed, 0 insertions, 2 deletions
diff --git a/vim/plugin/fixed_join.vim b/vim/plugin/fixed_join.vim
index ef1b03ef..81e61614 100644
--- a/vim/plugin/fixed_join.vim
+++ b/vim/plugin/fixed_join.vim
@@ -1,6 +1,5 @@
" User-defined key mapping to keep cursor in place when joining lines in
" normal mode
-" Suggesting mapping: normal J
if has('eval')
" Declare function
@@ -20,7 +19,6 @@ if has('eval')
endfunction
" Create mapping proxy to the function just defined
- " Suggesting mapping: normal J
noremap <Plug>FixedJoin
\ :<C-U>call <SID>FixedJoin()<CR>
endif