summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-07-05 20:15:23 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-05 20:15:23 +0200
commit04db26b36000a4677b95403ec94bd11f6cc73975 (patch)
tree409bf4069a07c8276f943b97e8bf93b61c60b01b /src/errors.h
parentf6d877975ba93fc9b4bee2c5d2aff88dbf9bea59 (diff)
patch 8.2.3110: a pattern that matches the cursor position is complicatedv8.2.3110
Problem: A pattern that matches the cursor position is bit complicated. Solution: Use a dot to indicate the cursor line and column. (Christian Brabandt, closes #8497, closes #8179)
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index f2624dfc1d..7524b80468 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -488,3 +488,5 @@ EXTERN char e_no_white_space_allowed_after_str_str[]
INIT(= N_("E1202: No white space allowed after '%s': %s"));
EXTERN char e_dot_can_only_be_used_on_dictionary_str[]
INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));
+EXTERN char e_regexp_number_after_dot_pos_search[]
+ INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));