]> granicus.if.org Git - vim/commitdiff
patch 8.0.0639: the cursor position is set when editing a new commit message v8.0.0639
authorBram Moolenaar <Bram@vim.org>
Tue, 13 Jun 2017 14:12:51 +0000 (16:12 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 13 Jun 2017 14:12:51 +0000 (16:12 +0200)
Problem:    The cursor position is set to the last position in a new commit
            message.
Solution:   Don't set the position if the filetype matches "commit".
            (Christian Brabandt)

runtime/defaults.vim
src/version.c

index 6fd43db51b0060ebb702d77a060363c8be0b2f49..0dcb922450453c5965628dd8ecbb1067ec5174d2 100644 (file)
@@ -1,7 +1,7 @@
 " The default vimrc file.
 "
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last change: 2017 Apr 12
+" Last change: 2017 Jun 13
 "
 " This is loaded if no vimrc file was found.
 " Except when Vim is run with "-u NONE" or "-C".
@@ -106,12 +106,13 @@ if has("autocmd")
     au!
 
     " When editing a file, always jump to the last known cursor position.
-    " Don't do it when the position is invalid or when inside an event handler
-    " (happens when dropping a file on gvim).
+    " Don't do it when the position is invalid, when inside an event handler
+    " (happens when dropping a file on gvim) and for a commit message (it's
+    " likely a different one than last time).
     autocmd BufReadPost *
-      \ if line("'\"") >= 1 && line("'\"") <= line("$") |
-      \   exe "normal! g`\"" |
-      \ endif
+      \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit'
+      \ |   exe "normal! g`\""
+      \ endif
 
   augroup END
 
index 00733b359b9bf4e4a002c9f9ee522ec8fc3aef16..13dff53faf1460a53e91027a78178536d8244541 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    639,
 /**/
     638,
 /**/