#283 Fix linting buffers with no filename, by creating a filename with a guess for the file extension

This commit is contained in:
w0rp
2017-02-13 10:36:38 +00:00
parent 3aa1d57b57
commit 5cdd1498b4
3 changed files with 98 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
Before:
augroup TestFiletypeGroup
autocmd!
autocmd BufEnter,BufRead *.x setf xfiletype
autocmd BufEnter,BufRead *.y set filetype=yfiletype
autocmd BufEnter,BufRead *.z setlocal filetype=zfiletype
autocmd BufEnter,BufRead *.jsx set filetype=javascript.jsx
augroup END
After:
unlet! g:map
augroup TestFiletypeGroup
autocmd!
augroup END
augroup! TestFiletypeGroup
Execute(ALE should parse autocmd filetypes correctly):
let g:map = ale#filetypes#LoadExtensionMap()
AssertEqual '.x', g:map['xfiletype']
AssertEqual '.y', g:map['yfiletype']
AssertEqual '.z', g:map['zfiletype']
AssertEqual '.jsx', g:map['javascript.jsx']
Execute(ALE should guess file extensions appropriately):
" The whole string should be used, if there's a match.
AssertEqual '.jsx', ale#filetypes#GuessExtension('javascript.jsx')
" The first part should be used.
AssertEqual '.x', ale#filetypes#GuessExtension('xfiletype.yfiletype')