aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-09-12 10:51:59 -0400
committerGitHub <noreply@github.com>2020-09-12 10:51:59 -0400
commitb23907e7ce8b4cf6e7e95abd3379bcae6715af7b (patch)
tree72db66d5dc11e7dc66d56da1e539c2b7e13d3930 /src/nvim/globals.h
parent459f8ad80861be55ca091b8e7594f6bb61a804e0 (diff)
parent466ff35dfd72418458d9c629310cc52bb5428df2 (diff)
downloadrneovim-b23907e7ce8b4cf6e7e95abd3379bcae6715af7b.tar.gz
rneovim-b23907e7ce8b4cf6e7e95abd3379bcae6715af7b.tar.bz2
rneovim-b23907e7ce8b4cf6e7e95abd3379bcae6715af7b.zip
Merge pull request #12721 from aufarg/vim-8.1.0265
[RDY] vim-patch:8.1.{265,271,273,274,275,277,278,279,280,281,282,284,286,291,295,296,320,321,339,351,392,399,552}
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 91a0eab947..205be4b811 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -353,9 +353,11 @@ EXTERN int t_colors INIT(= 256); // int value of T_CCO
// position. Search_match_lines is the number of lines after the match (0 for
// a match within one line), search_match_endcol the column number of the
// character just after the match in the last line.
-EXTERN int highlight_match INIT(= false); // show search match pos
-EXTERN linenr_T search_match_lines; // lines of of matched string
-EXTERN colnr_T search_match_endcol; // col nr of match end
+EXTERN bool highlight_match INIT(= false); // show search match pos
+EXTERN linenr_T search_match_lines; // lines of of matched string
+EXTERN colnr_T search_match_endcol; // col nr of match end
+EXTERN linenr_T search_first_line INIT(= 0); // for :{FIRST},{last}s/pat
+EXTERN linenr_T search_last_line INIT(= MAXLNUM); // for :{first},{LAST}s/pat
EXTERN int no_smartcase INIT(= false); // don't use 'smartcase' once