aboutsummaryrefslogtreecommitdiff
path: root/plugin/fixed_join.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/fixed_join.vim')
-rw-r--r--plugin/fixed_join.vim7
1 files changed, 1 insertions, 6 deletions
diff --git a/plugin/fixed_join.vim b/plugin/fixed_join.vim
index d546aee..1610011 100644
--- a/plugin/fixed_join.vim
+++ b/plugin/fixed_join.vim
@@ -33,12 +33,7 @@ function! s:FixedJoin()
endfunction
-" Create mapping proxy to the function just defined
+" Create modeless mapping target for the function just defined
noremap <silent>
\ <Plug>FixedJoin
\ :<C-U>call <SID>FixedJoin()<CR>
-
-" If there's no mapping to it already, bind normal J to it
-if !hasmapto('<Plug>FixedJoin')
- nmap J <Plug>FixedJoin
-endif