mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
lint
This commit is contained in:
parent
0b60372792
commit
a0ada7dac4
@ -3664,18 +3664,18 @@ static linenr_T get_address(exarg_T *eap,
|
||||
*/
|
||||
if (lnum != MAXLNUM)
|
||||
curwin->w_cursor.lnum = lnum;
|
||||
/*
|
||||
* Start a forward search at the end of the line (unless
|
||||
* before the first line).
|
||||
* Start a backward search at the start of the line.
|
||||
* This makes sure we never match in the current
|
||||
* line, and can match anywhere in the
|
||||
* next/previous line.
|
||||
*/
|
||||
if (c == '/' && curwin->w_cursor.lnum > 0)
|
||||
|
||||
// Start a forward search at the end of the line (unless
|
||||
// before the first line).
|
||||
// Start a backward search at the start of the line.
|
||||
// This makes sure we never match in the current
|
||||
// line, and can match anywhere in the
|
||||
// next/previous line.
|
||||
if (c == '/' && curwin->w_cursor.lnum > 0) {
|
||||
curwin->w_cursor.col = MAXCOL;
|
||||
else
|
||||
} else {
|
||||
curwin->w_cursor.col = 0;
|
||||
}
|
||||
searchcmdlen = 0;
|
||||
if (!do_search(NULL, c, cmd, 1L,
|
||||
SEARCH_HIS | SEARCH_MSG, NULL)) {
|
||||
|
Loading…
Reference in New Issue
Block a user