mirror of
https://github.com/neovim/neovim.git
synced 2025-12-02 06:53:05 +00:00
vim-patch:8.2.5150: read past the end of the first line with ":0;'{"
Problem: Read past the end of the first line with ":0;'{".
Solution: When on line zero check the column is valid for line one.
f7c7c3fad6
This commit is contained in:
@@ -2826,10 +2826,13 @@ int parse_cmd_address(exarg_T *eap, char **errormsg, bool silent)
|
||||
curwin->w_cursor.lnum = eap->line2;
|
||||
|
||||
// Don't leave the cursor on an illegal line or column, but do
|
||||
// accept zero as address, so 0;/PATTERN/ works correctly.
|
||||
// accept zero as address, so 0;/PATTERN/ works correctly
|
||||
// (where zero usually means to use the first line).
|
||||
// Check the cursor position before returning.
|
||||
if (eap->line2 > 0) {
|
||||
check_cursor();
|
||||
} else {
|
||||
check_cursor_col();
|
||||
}
|
||||
need_check_cursor = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user