2017-03-21 13:09:02 +00:00
|
|
|
Before:
|
|
|
|
silent! cd /testplugin/test/util
|
2017-07-26 09:37:37 +00:00
|
|
|
let g:dir = getcwd()
|
|
|
|
|
|
|
|
After:
|
|
|
|
silent execute 'cd ' . fnameescape(g:dir)
|
|
|
|
unlet! g:dir
|
2017-03-21 13:09:02 +00:00
|
|
|
|
|
|
|
Execute(CdString should output the correct command string):
|
2017-09-09 17:03:34 +00:00
|
|
|
" We will check that escaping is done correctly for each platform.
|
2018-10-23 23:26:15 +00:00
|
|
|
AssertEqual
|
|
|
|
\ has('unix') ? 'cd ''/foo bar/baz'' && ' : 'cd /d "/foo bar/baz" && ',
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#command#CdString('/foo bar/baz')
|
2017-03-21 13:09:02 +00:00
|
|
|
|
2021-03-01 20:11:10 +00:00
|
|
|
Execute(CdString handle substitution and formatting):
|
2017-07-26 09:37:37 +00:00
|
|
|
call ale#test#SetFilename('foo.txt')
|
|
|
|
|
2018-10-23 23:26:15 +00:00
|
|
|
AssertEqual
|
2020-08-28 16:46:43 +00:00
|
|
|
\ has('unix') ? 'cd %s:h && ' : 'cd /d %s:h && ',
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#command#CdString('%s:h')
|