]> git.ipfire.org Git - thirdparty/vim.git/commit
Update the vimscript code for restoring cursor position
authorDragan Simic' via vim_dev <vim_dev@googlegroups.com>
Wed, 9 Aug 2023 15:23:58 +0000 (17:23 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 10 Aug 2023 04:43:14 +0000 (06:43 +0200)
commit81b8bf5b4a33552c610dc2ea743ac2698a16aef7
tree053183a76d2b00f7be0de1713866691bf8135ce4
parent6a500661a9cb7b57093cf1095aa67e9c4aabc709
Update the vimscript code for restoring cursor position

Using xxd(1) to filter and edit binary files causes the input files
to have dual nature, so to speak, which effectively makes restoring
the cursor position broken.  Fix that by ignoring the "xxd" file type
in the code that restores the cursor position.

Interactive rebasing in git causes files to be edited in vim, which,
similarly to commit messages, are rarely the same as the last one
edited.  Thus, also add "gitrebase" to the list of file types for
which the cursor position isn't restored.

While there, refactor the code a bit to possibly save a few CPU cycles
and to keep the line lengths in check, and use the long form of the
commands and variables, to make the code slightly more consistent and
more understandable to newcomers.

Update the relevant comments in the code and the associated parts of
the documentation, to keep them in sync with the updated code.

Remove some redundant trailing whitespace as well, as spotted.
runtime/defaults.vim
runtime/doc/usr_05.txt