mirror of
https://github.com/neovim/neovim.git
synced 2024-12-31 17:13:26 -07:00
vim-patch:8.0.0023
Problem: "gd" and "gD" may find a match in a comment or string.
Solution: Ignore matches in comments and strings. (Anton Lindqvist)
226630a030
This commit is contained in:
parent
a76da96e86
commit
9ffa22b7ef
@ -3657,6 +3657,39 @@ nv_gd (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Return true if line[offset] is not inside a C-style comment or string, false
|
||||||
|
// otherwise.
|
||||||
|
static bool is_ident(char_u *line, int offset)
|
||||||
|
{
|
||||||
|
bool incomment = false;
|
||||||
|
int instring = 0;
|
||||||
|
int prev = 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < offset && line[i] != NUL; i++) {
|
||||||
|
if (instring != 0) {
|
||||||
|
if (prev != '\\' && line[i] == instring) {
|
||||||
|
instring = 0;
|
||||||
|
}
|
||||||
|
} else if ((line[i] == '"' || line[i] == '\'') && !incomment) {
|
||||||
|
instring = line[i];
|
||||||
|
} else {
|
||||||
|
if (incomment) {
|
||||||
|
if (prev == '*' && line[i] == '/') {
|
||||||
|
incomment = false;
|
||||||
|
}
|
||||||
|
} else if (prev == '/' && line[i] == '*') {
|
||||||
|
incomment = true;
|
||||||
|
} else if (prev == '/' && line[i] == '/') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
prev = line[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
return incomment == false && instring == 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Search for variable declaration of "ptr[len]".
|
* Search for variable declaration of "ptr[len]".
|
||||||
* When "locally" is true in the current function ("gd"), otherwise in the
|
* When "locally" is true in the current function ("gd"), otherwise in the
|
||||||
@ -3683,6 +3716,7 @@ find_decl (
|
|||||||
bool retval = true;
|
bool retval = true;
|
||||||
bool incll;
|
bool incll;
|
||||||
int searchflags = flags_arg;
|
int searchflags = flags_arg;
|
||||||
|
bool valid;
|
||||||
|
|
||||||
pat = xmalloc(len + 7);
|
pat = xmalloc(len + 7);
|
||||||
|
|
||||||
@ -3717,6 +3751,7 @@ find_decl (
|
|||||||
/* Search forward for the identifier, ignore comment lines. */
|
/* Search forward for the identifier, ignore comment lines. */
|
||||||
clearpos(&found_pos);
|
clearpos(&found_pos);
|
||||||
for (;; ) {
|
for (;; ) {
|
||||||
|
valid = false;
|
||||||
t = searchit(curwin, curbuf, &curwin->w_cursor, FORWARD,
|
t = searchit(curwin, curbuf, &curwin->w_cursor, FORWARD,
|
||||||
pat, 1L, searchflags, RE_LAST, (linenr_T)0, NULL);
|
pat, 1L, searchflags, RE_LAST, (linenr_T)0, NULL);
|
||||||
if (curwin->w_cursor.lnum >= old_pos.lnum)
|
if (curwin->w_cursor.lnum >= old_pos.lnum)
|
||||||
@ -3747,20 +3782,35 @@ find_decl (
|
|||||||
curwin->w_cursor.col = 0;
|
curwin->w_cursor.col = 0;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!locally) /* global search: use first match found */
|
valid = is_ident(get_cursor_line_ptr(), curwin->w_cursor.col);
|
||||||
|
|
||||||
|
// If the current position is not a valid identifier and a previous match is
|
||||||
|
// present, favor that one instead.
|
||||||
|
if (!valid && found_pos.lnum != 0) {
|
||||||
|
curwin->w_cursor = found_pos;
|
||||||
break;
|
break;
|
||||||
if (curwin->w_cursor.lnum >= par_pos.lnum) {
|
}
|
||||||
/* If we previously found a valid position, use it. */
|
// global search: use first match found
|
||||||
if (found_pos.lnum != 0)
|
if (valid && !locally) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (valid && curwin->w_cursor.lnum >= par_pos.lnum) {
|
||||||
|
// If we previously found a valid position, use it.
|
||||||
|
if (found_pos.lnum != 0) {
|
||||||
curwin->w_cursor = found_pos;
|
curwin->w_cursor = found_pos;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// For finding a local variable and the match is before the "{" search
|
// For finding a local variable and the match is before the "{" or
|
||||||
// to find a later match. For K&R style function declarations this
|
// inside a comment, continue searching. For K&R style function
|
||||||
// skips the function header without types. Remove SEARCH_START from
|
// declarations this skips the function header without types.
|
||||||
// flags to avoid getting stuck at one position.
|
if (!valid) {
|
||||||
found_pos = curwin->w_cursor;
|
clearpos(&found_pos);
|
||||||
|
} else {
|
||||||
|
found_pos = curwin->w_cursor;
|
||||||
|
}
|
||||||
|
// Remove SEARCH_START from flags to avoid getting stuck at one position.
|
||||||
searchflags &= ~SEARCH_START;
|
searchflags &= ~SEARCH_START;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,22 +1,277 @@
|
|||||||
" Test commands that jump somewhere.
|
" Test commands that jump somewhere.
|
||||||
|
|
||||||
func Test_geeDEE()
|
" Create a new buffer using "lines" and place the cursor on the word after the
|
||||||
|
" first occurrence of return and invoke "cmd". The cursor should now be
|
||||||
|
" positioned at the given line and col.
|
||||||
|
func XTest_goto_decl(cmd, lines, line, col)
|
||||||
new
|
new
|
||||||
call setline(1, ["Filename x;", "", "int Filename", "int func() {", "Filename y;"])
|
call setline(1, a:lines)
|
||||||
/y;/
|
/return/
|
||||||
normal gD
|
normal! W
|
||||||
call assert_equal(1, line('.'))
|
execute 'norm! ' . a:cmd
|
||||||
|
call assert_equal(a:line, line('.'))
|
||||||
|
call assert_equal(a:col, col('.'))
|
||||||
quit!
|
quit!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_gee_dee()
|
func Test_gD()
|
||||||
new
|
let lines = [
|
||||||
call setline(1, ["int x;", "", "int func(int x)", "{", " return x;", "}"])
|
\ 'int x;',
|
||||||
/return/
|
\ '',
|
||||||
normal $hgd
|
\ 'int func(void)',
|
||||||
call assert_equal(3, line('.'))
|
\ '{',
|
||||||
call assert_equal(14, col('.'))
|
\ ' return x;',
|
||||||
quit!
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gD', lines, 1, 5)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gD_too()
|
||||||
|
let lines = [
|
||||||
|
\ 'Filename x;',
|
||||||
|
\ '',
|
||||||
|
\ 'int Filename',
|
||||||
|
\ 'int func() {',
|
||||||
|
\ ' Filename x;',
|
||||||
|
\ ' return x;',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gD', lines, 1, 10)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gD_comment()
|
||||||
|
let lines = [
|
||||||
|
\ '/* int x; */',
|
||||||
|
\ 'int x;',
|
||||||
|
\ '',
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gD', lines, 2, 5)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gD_inline_comment()
|
||||||
|
let lines = [
|
||||||
|
\ 'int y /* , x */;',
|
||||||
|
\ 'int x;',
|
||||||
|
\ '',
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gD', lines, 2, 5)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gD_string()
|
||||||
|
let lines = [
|
||||||
|
\ 'char *s[] = "x";',
|
||||||
|
\ 'int x = 1;',
|
||||||
|
\ '',
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gD', lines, 2, 5)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gD_string_same_line()
|
||||||
|
let lines = [
|
||||||
|
\ 'char *s[] = "x", int x = 1;',
|
||||||
|
\ '',
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gD', lines, 1, 22)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gD_char()
|
||||||
|
let lines = [
|
||||||
|
\ "char c = 'x';",
|
||||||
|
\ 'int x = 1;',
|
||||||
|
\ '',
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gD', lines, 2, 5)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd()
|
||||||
|
let lines = [
|
||||||
|
\ 'int x;',
|
||||||
|
\ '',
|
||||||
|
\ 'int func(int x)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 3, 14)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_not_local()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func1(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ '',
|
||||||
|
\ 'int func2(int x)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 3, 10)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_kr_style()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(x)',
|
||||||
|
\ ' int x;',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 2, 7)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_missing_braces()
|
||||||
|
let lines = [
|
||||||
|
\ 'def func1(a)',
|
||||||
|
\ ' a + 1',
|
||||||
|
\ 'end',
|
||||||
|
\ '',
|
||||||
|
\ 'a = 1',
|
||||||
|
\ '',
|
||||||
|
\ 'def func2()',
|
||||||
|
\ ' return a',
|
||||||
|
\ 'end',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 1, 11)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_comment()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' /* int x; */',
|
||||||
|
\ ' int x;',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\]
|
||||||
|
call XTest_goto_decl('gd', lines, 4, 7)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_comment_in_string()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' char *s ="//"; int x;',
|
||||||
|
\ ' int x;',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\]
|
||||||
|
call XTest_goto_decl('gd', lines, 3, 22)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_string_in_comment()
|
||||||
|
set comments=
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' /* " */ int x;',
|
||||||
|
\ ' int x;',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\]
|
||||||
|
call XTest_goto_decl('gd', lines, 3, 15)
|
||||||
|
set comments&
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_inline_comment()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(/* x is an int */ int x)',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 1, 32)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_inline_comment_only()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(void) /* one lonely x */',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 3, 10)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_inline_comment_body()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' int y /* , x */;',
|
||||||
|
\ '',
|
||||||
|
\ ' for (/* int x = 0 */; y < 2; y++);',
|
||||||
|
\ '',
|
||||||
|
\ ' int x = 0;',
|
||||||
|
\ '',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 7, 7)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_trailing_multiline_comment()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(int x) /* x is an int */',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 1, 14)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_trailing_comment()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(int x) // x is an int',
|
||||||
|
\ '{',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 1, 14)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_string()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' char *s = "x";',
|
||||||
|
\ ' int x = 1;',
|
||||||
|
\ '',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 4, 7)
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_gd_string_only()
|
||||||
|
let lines = [
|
||||||
|
\ 'int func(void)',
|
||||||
|
\ '{',
|
||||||
|
\ ' char *s = "x";',
|
||||||
|
\ '',
|
||||||
|
\ ' return x;',
|
||||||
|
\ '}',
|
||||||
|
\ ]
|
||||||
|
call XTest_goto_decl('gd', lines, 5, 10)
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Check that setting 'cursorline' does not change curswant
|
" Check that setting 'cursorline' does not change curswant
|
||||||
|
@ -706,7 +706,7 @@ static const int included_patches[] = {
|
|||||||
// 26,
|
// 26,
|
||||||
// 25,
|
// 25,
|
||||||
// 24 NA
|
// 24 NA
|
||||||
// 23,
|
23,
|
||||||
// 22 NA
|
// 22 NA
|
||||||
// 21,
|
// 21,
|
||||||
// 20,
|
// 20,
|
||||||
|
Loading…
Reference in New Issue
Block a user