aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-09-05 11:54:26 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-09-05 11:54:26 +1200
commit14c91a98d63d74a81542af565af6a67377c51368 (patch)
tree49b9cd553814537d0e398f84556fd0da02dc394e
parentMerge branch 'hotfix/v0.1.1' (diff)
parentBump VERSION (diff)
downloadvim-vertical-region-14c91a98d63d74a81542af565af6a67377c51368.tar.gz
vim-vertical-region-14c91a98d63d74a81542af565af6a67377c51368.zip
Merge branch 'hotfix/v0.1.2'v0.1.2
* hotfix/v0.1.2: Bump VERSION Move to start of line after line jump
-rw-r--r--VERSION2
-rw-r--r--autoload/vertical_region.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 17e51c3..d917d3e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.1.1
+0.1.2
diff --git a/autoload/vertical_region.vim b/autoload/vertical_region.vim
index a872ad6..9dd171f 100644
--- a/autoload/vertical_region.vim
+++ b/autoload/vertical_region.vim
@@ -31,7 +31,7 @@ function! vertical_region#Map(count, up, mode) abort
" If not moving linewise for operator mode and not in first column, move to
" same column after line jump; is there a way to do this in one jump?
- let l:keys = l:num . 'G'
+ let l:keys = l:num . 'G0'
if a:mode ==# 'o'
let l:keys = 'V' . l:keys
elseif l:col > 1