comparison src/errors.h @ 29816:bbe62ea78aac v9.0.0247

patch 9.0.0247: cannot add padding to virtual text without highlight Commit: https://github.com/vim/vim/commit/f396ce83eebf6c61596184231d39ce4d41eeac04 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 23 18:39:37 2022 +0100 patch 9.0.0247: cannot add padding to virtual text without highlight Problem: Cannot add padding to virtual text without highlight. Solution: Add the "text_padding_left" argument. (issue https://github.com/vim/vim/issues/10906)
author Bram Moolenaar <Bram@vim.org>
date Tue, 23 Aug 2022 19:45:05 +0200
parents d08aa1bfe319
children 5d9fd7b1217b
comparison
equal deleted inserted replaced
29815:9941dc321348 29816:bbe62ea78aac
1216 INIT(= N_("E486: Pattern not found")); 1216 INIT(= N_("E486: Pattern not found"));
1217 EXTERN char e_pattern_not_found_str[] 1217 EXTERN char e_pattern_not_found_str[]
1218 INIT(= N_("E486: Pattern not found: %s")); 1218 INIT(= N_("E486: Pattern not found: %s"));
1219 EXTERN char e_argument_must_be_positive[] 1219 EXTERN char e_argument_must_be_positive[]
1220 INIT(= N_("E487: Argument must be positive")); 1220 INIT(= N_("E487: Argument must be positive"));
1221 EXTERN char e_argument_must_be_positive_str[]
1222 INIT(= N_("E487: Argument must be positive: %s"));
1221 EXTERN char e_trailing_characters[] 1223 EXTERN char e_trailing_characters[]
1222 INIT(= N_("E488: Trailing characters")); 1224 INIT(= N_("E488: Trailing characters"));
1223 EXTERN char e_trailing_characters_str[] 1225 EXTERN char e_trailing_characters_str[]
1224 INIT(= N_("E488: Trailing characters: %s")); 1226 INIT(= N_("E488: Trailing characters: %s"));
1225 EXTERN char e_no_call_stack_to_substitute_for_stack[] 1227 EXTERN char e_no_call_stack_to_substitute_for_stack[]
3317 INIT(= N_("E1294: Can only use text_align when column is zero")); 3319 INIT(= N_("E1294: Can only use text_align when column is zero"));
3318 #endif 3320 #endif
3319 #ifdef FEAT_PROP_POPUP 3321 #ifdef FEAT_PROP_POPUP
3320 EXTERN char e_cannot_specify_both_type_and_types[] 3322 EXTERN char e_cannot_specify_both_type_and_types[]
3321 INIT(= N_("E1295: Cannot specify both 'type' and 'types'")); 3323 INIT(= N_("E1295: Cannot specify both 'type' and 'types'"));
3322 #endif 3324 EXTERN char e_can_only_use_left_padding_when_column_is_zero[]
3325 INIT(= N_("E1296: Can only use left padding when column is zero"));
3326 #endif