comparison src/testdir/test_listchars.vim @ 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 373278f5bd51
children ad90d7eee236
comparison
equal deleted inserted replaced
25977:93fc4b568a54 25978:40b17deb294f
284 let nbsp = nr2char(0xa0) 284 let nbsp = nr2char(0xa0)
285 call append(0, [" a\tb c" .. nbsp .. "d "]) 285 call append(0, [" a\tb c" .. nbsp .. "d "])
286 let expected = ['≡≢≣≡≢≣≡≢a←↔↔↔↔↔→b␣c≠d≡≢⇔'] 286 let expected = ['≡≢≣≡≢≣≡≢a←↔↔↔↔↔→b␣c≠d≡≢⇔']
287 redraw! 287 redraw!
288 call cursor(1, 1) 288 call cursor(1, 1)
289 call assert_equal(expected, ScreenLines(1, virtcol('$')))
290
291 set listchars=eol:\\u21d4,space:\\u2423,multispace:≡\\u2262\\U00002263,nbsp:\\U00002260,tab:←↔\\u2192
292 redraw!
289 call assert_equal(expected, ScreenLines(1, virtcol('$'))) 293 call assert_equal(expected, ScreenLines(1, virtcol('$')))
290 294
291 set listchars+=lead:⇨,trail:⇦ 295 set listchars+=lead:⇨,trail:⇦
292 let expected = ['⇨⇨⇨⇨⇨⇨⇨⇨a←↔↔↔↔↔→b␣c≠d⇦⇦⇔'] 296 let expected = ['⇨⇨⇨⇨⇨⇨⇨⇨a←↔↔↔↔↔→b␣c≠d⇦⇦⇔']
293 redraw! 297 redraw!