diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-08 21:17:24 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-08 21:17:24 +0200 |
commit | 002573265a944381cf8dccf5129fc432e33441e7 (patch) | |
tree | 4a0e2476a019b5dfdce5a29c4428897a30d7dc05 /autoload/sleuth.vim | |
parent | a4b91124a8fea26575d08c1845e141520e7d33e2 (diff) | |
download | vim-polyglot-002573265a944381cf8dccf5129fc432e33441e7.tar.gz vim-polyglot-002573265a944381cf8dccf5129fc432e33441e7.zip |
Fix some ftdetect issues from tests
Diffstat (limited to 'autoload/sleuth.vim')
-rw-r--r-- | autoload/sleuth.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autoload/sleuth.vim b/autoload/sleuth.vim index 2eb95a63..6cf267fa 100644 --- a/autoload/sleuth.vim +++ b/autoload/sleuth.vim @@ -44,7 +44,7 @@ let s:globs = { \ 'clojure': '*.clj,*.boot,*.cl2,*.cljc,*.cljs,*.cljs.hl,*.cljscm,*.cljx,*.hic,*.edn,riemann.config,build.boot,profile.boot', \ 'cmake': '*.cmake,*.cmake.in,CMakeLists.txt', \ 'coffee': '*.coffee,*._coffee,*.cake,*.cjsx,*.iced,*.coffeekup,Cakefile', - \ 'cpp': '*.cpp,*.c++,*.cc,*.cp,*.cxx,*.h,*.h++,*.hh,*.hpp,*.hxx,*.inc,*.inl,*.ipp,*.tcc,*.tpp,*.moc', + \ 'cpp': '*.cpp,*.c++,*.cc,*.cp,*.cxx,*.h,*.h++,*.hh,*.hpp,*.hxx,*.inc,*.inl,*.ipp,*.tcc,*.tpp,*.moc,*.tlh', \ 'cql': '*.cql', \ 'cryptol': '*.cry,*.cyl,*.lcry,*.lcyl', \ 'crystal': '*.cr,Projectfile', @@ -78,18 +78,18 @@ let s:globs = { \ 'forth': '*.fs,*.ft,*.fth', \ 'fsharp': '*.fs,*.fsi,*.fsx', \ 'gdscript3': '*.gd', - \ 'gitcommit': '', + \ 'gitcommit': 'COMMIT_EDITMSG,MERGE_MSG,TAG_EDITMSG', \ 'gitconfig': '*.gitconfig', \ 'gitrebase': 'git-rebase-todo', \ 'gitsendemail': '', \ 'glsl': '*.glsl,*.fp,*.frag,*.frg,*.fs,*.fsh,*.fshader,*.geo,*.geom,*.glslf,*.glslv,*.gs,*.gshader,*.shader,*.tesc,*.tese,*.vert,*.vrx,*.vsh,*.vshader,*.comp', \ 'gmpl': '*.mod', - \ 'gnuplot': '*.gp,*.gnu,*.gnuplot,*.p,*.plot,*.plt', + \ 'gnuplot': '*.gp,*.gnu,*.gnuplot,*.p,*.plot,*.plt,*.gpi', \ 'go': '*.go', \ 'gohtmltmpl': '*.tmpl', \ 'gomod': 'go.mod', \ 'graphql': '*.graphql,*.gql,*.graphqls', - \ 'groovy': '*.gradle', + \ 'groovy': '*.groovy,*.grt,*.gtpl,*.gvy,*.gradle,Jenkinsfile', \ 'grub': '', \ 'haml': '*.haml,*.haml.deface,*.hamlc,*.hamlbars', \ 'haproxy': '*.cfg,haproxy.cfg,haproxy*.c*', |