aboutsummaryrefslogtreecommitdiffstats
path: root/ftdetect/query.vim
blob: 8339b6ba998031b804bcb2df468a73733fcf7535 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" 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("%"))