view src/testdir/test_fnameescape.vim @ 22950:1270401054d8 v8.2.2022

patch 8.2.2022: Vim9: star command recognized errornously Commit: https://github.com/vim/vim/commit/95388e3179f6b995dbc4acd3f23e3856bb0286fd Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 20 21:07:00 2020 +0100 patch 8.2.2022: Vim9: star command recognized errornously Problem: Vim9: star command recognized errornously. Solution: Give an error for missing colon. (issue https://github.com/vim/vim/issues/7335)
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Nov 2020 21:15:04 +0100
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