comparison src/errors.h @ 28718:723c7d940cba

patch 8.2.4883: string interpolation only works in heredoc Commit: https://github.com/vim/vim/commit/2eaef106e4a7fc9dc74a7e672b5f550ec1f9786e Author: LemonBoy <thatlemon@gmail.com> Date: Fri May 6 13:14:50 2022 +0100 patch 8.2.4883: string interpolation only works in heredoc Problem: String interpolation only works in heredoc. Solution: Support interpolated strings. Use syntax for heredoc consistent with strings, similar to C#. (closes #10327)
author Bram Moolenaar <Bram@vim.org>
date Fri, 06 May 2022 14:15:03 +0200
parents a16dae0be398
children 3632627d5c81
comparison
equal deleted inserted replaced
28717:3953457538c9 28718:723c7d940cba
3266 INIT(= N_("E1276: Illegal map mode string: '%s'")); 3266 INIT(= N_("E1276: Illegal map mode string: '%s'"));
3267 # if !defined(FEAT_JOB_CHANNEL) 3267 # if !defined(FEAT_JOB_CHANNEL)
3268 EXTERN char e_channel_job_feature_not_available[] 3268 EXTERN char e_channel_job_feature_not_available[]
3269 INIT(= N_("E1277: Channel and job feature is not available")); 3269 INIT(= N_("E1277: Channel and job feature is not available"));
3270 # endif 3270 # endif
3271 #endif 3271 EXTERN char e_stray_closing_curly_str[]
3272 INIT(= N_("E1278: Stray '}' without a matching '{': %s"));
3273 EXTERN char e_missing_close_curly_str[]
3274 INIT(= N_("E1279: Missing '}': %s"));
3275 #endif