diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-23 18:39:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-23 18:39:37 +0100 |
commit | f396ce83eebf6c61596184231d39ce4d41eeac04 (patch) | |
tree | d3a624411eaea5463025bd186c39616688cc0876 /src/errors.h | |
parent | adce965162dd89bf29ee0e5baf53652e7515762c (diff) | |
download | vim-git-f396ce83eebf6c61596184231d39ce4d41eeac04.tar.gz |
patch 9.0.0247: cannot add padding to virtual text without highlightv9.0.0247
Problem: Cannot add padding to virtual text without highlight.
Solution: Add the "text_padding_left" argument. (issue #10906)
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 716ec32d8..99682e424 100644 --- a/src/errors.h +++ b/src/errors.h @@ -1218,6 +1218,8 @@ EXTERN char e_pattern_not_found_str[] INIT(= N_("E486: Pattern not found: %s")); EXTERN char e_argument_must_be_positive[] INIT(= N_("E487: Argument must be positive")); +EXTERN char e_argument_must_be_positive_str[] + INIT(= N_("E487: Argument must be positive: %s")); EXTERN char e_trailing_characters[] INIT(= N_("E488: Trailing characters")); EXTERN char e_trailing_characters_str[] @@ -3319,4 +3321,6 @@ EXTERN char e_can_only_use_text_align_when_column_is_zero[] #ifdef FEAT_PROP_POPUP EXTERN char e_cannot_specify_both_type_and_types[] INIT(= N_("E1295: Cannot specify both 'type' and 'types'")); +EXTERN char e_can_only_use_left_padding_when_column_is_zero[] + INIT(= N_("E1296: Can only use left padding when column is zero")); #endif |