mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.4.239
Problem: ":e +" does not position cursor at end of the file. Solution: Check for "+" being the last character (ZyX)
This commit is contained in:
@@ -4841,7 +4841,7 @@ getargcmd(argp)
|
||||
if (*arg == '+') /* +[command] */
|
||||
{
|
||||
++arg;
|
||||
if (vim_isspace(*arg))
|
||||
if (vim_isspace(*arg) || *arg == NUL)
|
||||
command = dollar_command;
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user