diff options
author | LemonBoy <thatlemon@gmail.com> | 2022-05-06 13:14:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-06 13:14:50 +0100 |
commit | 2eaef106e4a7fc9dc74a7e672b5f550ec1f9786e (patch) | |
tree | 543832333e5ef90b9e51477457a7e65572274227 /src/errors.h | |
parent | e7d6dbc5721342e3d6b04cf285e4510b5569e707 (diff) | |
download | vim-git-2eaef106e4a7fc9dc74a7e672b5f550ec1f9786e.tar.gz |
patch 8.2.4883: string interpolation only works in heredocv8.2.4883
Problem: String interpolation only works in heredoc.
Solution: Support interpolated strings. Use syntax for heredoc consistent
with strings, similar to C#. (closes #10327)
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index 2edbb63b9..0106d1d50 100644 --- a/src/errors.h +++ b/src/errors.h @@ -3268,4 +3268,8 @@ EXTERN char e_illegal_map_mode_string_str[] EXTERN char e_channel_job_feature_not_available[] INIT(= N_("E1277: Channel and job feature is not available")); # endif +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")); #endif |