mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 17:58:18 +00:00
Merge #8998 from janlazo/vim-8.0.1275
This commit is contained in:
@@ -6297,7 +6297,7 @@ static void nv_gomark(cmdarg_T *cap)
|
||||
pos_T *pos;
|
||||
int c;
|
||||
pos_T old_cursor = curwin->w_cursor;
|
||||
int old_KeyTyped = KeyTyped; /* getting file may reset it */
|
||||
const bool old_KeyTyped = KeyTyped; // getting file may reset it
|
||||
|
||||
if (cap->cmdchar == 'g')
|
||||
c = cap->extra_char;
|
||||
@@ -6334,7 +6334,7 @@ static void nv_pcmark(cmdarg_T *cap)
|
||||
{
|
||||
pos_T *pos;
|
||||
linenr_T lnum = curwin->w_cursor.lnum;
|
||||
int old_KeyTyped = KeyTyped; /* getting file may reset it */
|
||||
const bool old_KeyTyped = KeyTyped; // getting file may reset it
|
||||
|
||||
if (!checkclearopq(cap->oap)) {
|
||||
if (cap->cmdchar == 'g')
|
||||
|
Reference in New Issue
Block a user