aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-15 19:46:17 +0800
committerGitHub <noreply@github.com>2023-04-15 19:46:17 +0800
commit62b7b1daf37abbe4d72838933569fefa970aa2e4 (patch)
tree3e04748f05198e3e971e386bf6270cbc65d79413 /src/nvim/globals.h
parent071c455420dec7992a06a55e8bd443b769ded369 (diff)
parent57221e0d11d1c24bc2abada7559a1d20c5090b62 (diff)
downloadrneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.tar.gz
rneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.tar.bz2
rneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.zip
Merge pull request #23105 from zeertzjq/vim-8.2.4770
vim-patch:8.2.{4770,4783,4840,4883,4930,4934},9.0.0104: interpolated string
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index e406d93494..11888a5df8 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -1024,6 +1024,11 @@ EXTERN const char e_highlight_group_name_too_long[] INIT(= N_("E1249: Highlight
EXTERN const char e_invalid_line_number_nr[] INIT(= N_("E966: Invalid line number: %ld"));
+EXTERN char e_stray_closing_curly_str[]
+INIT(= N_("E1278: Stray '}' without a matching '{': %s"));
+EXTERN char e_missing_close_curly_str[]
+INIT(= N_("E1279: Missing '}': %s"));
+
EXTERN const char e_undobang_cannot_redo_or_move_branch[]
INIT(= N_("E5767: Cannot use :undo! to redo or move to a different undo branch"));