Mercurial > vim
view src/testdir/test_fnameescape.vim @ 30616:eb86a6330ae3 v9.0.0643
patch 9.0.0643: smoothscroll test fails
Commit: https://github.com/vim/vim/commit/b34c4b7863af8718ad726173585dd38a7c292f0f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 2 22:32:08 2022 +0100
patch 9.0.0643: smoothscroll test fails
Problem: Smoothscroll test fails.
Solution: Check if skipcol changed.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 02 Oct 2022 23:45:03 +0200 |
parents | 08940efa6b4e |
children |
line wrap: on
line source
" Test if fnameescape is correct for special chars like ! func Test_fnameescape() let fname = 'Xspa ce' let status = v:false try exe "w! " . fnameescape(fname) let status = v:true endtry call assert_true(status, "Space") call delete(fname) let fname = 'Xemark!' let status = v:false try exe "w! " . fname->fnameescape() let status = v:true endtry call assert_true(status, "ExclamationMark") call delete(fname) call assert_equal('\-', fnameescape('-')) call assert_equal('\+', fnameescape('+')) call assert_equal('\>', fnameescape('>')) endfunc " vim: shiftwidth=2 sts=2 expandtab