mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-27 12:50:04 +08:00
12 lines
236 B
VimL
Vendored
12 lines
236 B
VimL
Vendored
" Last Change: 2020 Sep 01
|
|
|
|
function! s:shouldFt(path)
|
|
let l:q_dir = fnamemodify(a:path, ":p:h:h:t")
|
|
|
|
if l:q_dir =~? "queries"
|
|
setlocal ft=query
|
|
endif
|
|
endfunction
|
|
|
|
autocmd BufNewFile,BufRead *.scm call s:shouldFt(expand("%"))
|