Fixed handle test for Windows
Needed to add correct separator to test data.
This commit is contained in:
parent
df8c45ed55
commit
3bc07b482b
@ -10,9 +10,9 @@ Before:
|
|||||||
runtime ale_linters/nasm/nasm.vim
|
runtime ale_linters/nasm/nasm.vim
|
||||||
|
|
||||||
let b:command_tail =
|
let b:command_tail =
|
||||||
\ ' -X gnu -I ' . ale#Escape(getcwd() . '/') . ' %s'
|
\ ' -X gnu -I ' . ale#Escape(getcwd() . (has('win32') ? '\' : '/')) . ' %s'
|
||||||
let b:command_tail_opt =
|
let b:command_tail_opt =
|
||||||
\ ' -X gnu -I ' . ale#Escape(getcwd() . '/') . ' -w+orphan-labels %s'
|
\ ' -X gnu -I ' . ale#Escape(getcwd() . (has('win32') ? '\' : '/')) . ' -w+orphan-labels %s'
|
||||||
|
|
||||||
After:
|
After:
|
||||||
Restore
|
Restore
|
||||||
|
Loading…
Reference in New Issue
Block a user