comparison runtime/doc/options.txt @ 25978:40b17deb294f v8.2.3522

patch 8.2.3522: cannot use x and u when setting 'listchars' Commit: https://github.com/vim/vim/commit/93ff6720fe4427341bc426b6d46e6324f226c270 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 16 17:51:40 2021 +0100 patch 8.2.3522: cannot use \x and \u when setting 'listchars' Problem: Cannot use \x and \u when setting 'listchars'. Solution: Support hex and unicode in hex form. (closes https://github.com/vim/vim/issues/9006)
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Oct 2021 19:00:03 +0200
parents 416237f1de22
children aade8ef975d5
comparison
equal deleted inserted replaced
25977:93fc4b568a54 25978:40b17deb294f
4976 4976
4977 The characters ':' and ',' should not be used. UTF-8 characters can 4977 The characters ':' and ',' should not be used. UTF-8 characters can
4978 be used when 'encoding' is "utf-8", otherwise only printable 4978 be used when 'encoding' is "utf-8", otherwise only printable
4979 characters are allowed. All characters must be single width. 4979 characters are allowed. All characters must be single width.
4980 4980
4981 Each character can be specified as hex: >
4982 set listchars=eol:\\x24
4983 set listchars=eol:\\u21b5
4984 set listchars=eol:\\U000021b5
4985 < Note that a double backslash is used. The number of hex characters
4986 must be exactly 2 for \\x, 4 for \\u and 8 for \\U.
4987
4981 Examples: > 4988 Examples: >
4982 :set lcs=tab:>-,trail:- 4989 :set lcs=tab:>-,trail:-
4983 :set lcs=tab:>-,eol:<,nbsp:% 4990 :set lcs=tab:>-,eol:<,nbsp:%
4984 :set lcs=extends:>,precedes:< 4991 :set lcs=extends:>,precedes:<
4985 < The "NonText" highlighting will be used for "eol", "extends" and 4992 < The "NonText" highlighting will be used for "eol", "extends" and