Fix #2195 - Handle the command key being missing

This commit is contained in:
w0rp
2019-01-27 09:12:59 +00:00
parent 6e9040da75
commit 20b9dfdb4a
2 changed files with 14 additions and 1 deletions

View File

@@ -167,6 +167,18 @@ Execute(ParseCompileCommandsFlags should parse some basic flags):
\ },
\ ] }, {})
Execute(ParseCompileCommandsFlags should tolerate items without commands):
noautocmd execute 'file! ' . fnameescape(ale#path#Simplify('/foo/bar/xmms2-mpris/src/xmms2-mpris.c'))
AssertEqual
\ '',
\ ale#c#ParseCompileCommandsFlags(bufnr(''), { "xmms2-mpris.c": [
\ {
\ 'directory': '/foo/bar/xmms2-mpris',
\ 'file': '/foo/bar/xmms2-mpris/src/xmms2-mpris.c',
\ },
\ ] }, {})
Execute(ParseCompileCommandsFlags should fall back to files in the same directory):
noautocmd execute 'file! ' . fnameescape(ale#path#Simplify('/foo/bar/xmms2-mpris/src/xmms2-mpris.c'))