aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-17 22:48:29 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-17 22:48:29 +1200
commit1f6701426cd89f6d1d8ce3c8e6d6d01e2f9931fc (patch)
tree60808a4ff934e9b6b53206acae709893767f31d1
parentUpdate VERSION (diff)
downloadvim-fixed-join-1f6701426cd89f6d1d8ce3c8e6d6d01e2f9931fc.tar.gz
vim-fixed-join-1f6701426cd89f6d1d8ce3c8e6d6d01e2f9931fc.zip
Correct variable names
-rw-r--r--plugin/fixed_join.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/fixed_join.vim b/plugin/fixed_join.vim
index 7d97682..ae0e086 100644
--- a/plugin/fixed_join.vim
+++ b/plugin/fixed_join.vim
@@ -17,8 +17,8 @@ let g:loaded_fixed_join = 1
function! s:FixedJoin()
" Save current cursor position
- let l:lc = line('.')
- let l:cc = col('.')
+ let l:cursor_line = line('.')
+ let l:cursor_col = col('.')
" Build and execute join command
let l:command = '.,+' . v:count1 . 'join'