aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-08-08 15:05:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-08-08 15:05:47 +1200
commitda3e1b2df154d82c9bb00dcc2209d5aaac04da8e (patch)
tree8ac722d7ec09b25dd220f3d806d568b5690593f6
parentMerge branch 'release/v1.49.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-1.49.1.tar.gz (sig)
dotfiles-1.49.1.zip
Merge branch 'hotfix/v1.49.1'v1.49.1
* hotfix/v1.49.1: Bump VERSION Add a blank line Don't jump if zero or no move
-rw-r--r--VERSION4
-rw-r--r--vim/after/ftplugin/mail.vim7
2 files changed, 7 insertions, 4 deletions
diff --git a/VERSION b/VERSION
index b3b6d4ef..aaf629b3 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v1.48.0
-Tue Aug 7 12:05:45 UTC 2018
+tejr dotfiles v1.49.1
+Wed Aug 8 03:01:39 UTC 2018
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index 657c98ca..73749893 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -97,10 +97,13 @@ function! s:NewBlank(start, count, up) abort
" Move the line number or up or down depending on direction
let l:num += a:up ? -1 : 1
+
endwhile
- " Move to line (needs jumps and marks setting)
- execute 'normal '.l:num.'G'
+ " Move to line if nonzero and not equal to the current line
+ if l:num && l:num != line('.')
+ execute 'normal '.l:num.'G'
+ endif
endfunction