diff options
-rw-r--r-- | plugin/fixed_join.vim | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/plugin/fixed_join.vim b/plugin/fixed_join.vim index d039d53..7d7f718 100644 --- a/plugin/fixed_join.vim +++ b/plugin/fixed_join.vim @@ -31,15 +31,6 @@ function! s:FixedJoin() let l:command = '.,' . l:join_line . 'join' execute l:command - " Return the cursor to the saved position (Vim 6.0 fallback) - if exists('*cursor') - call cursor(l:cursor_line, l:cursor_col) - else - execute 'normal! ' - \ . l:cursor_line . 'G' - \ . l:cursor_col . '|' - endif - endfunction " Create mapping proxy to the function just defined |