aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/fixed_join.vim
diff options
context:
space:
mode:
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