From 2e85af47d2584372f968b760cab3eeee65273424 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Thu, 31 Mar 2022 16:46:45 +0200 Subject: feat(runtime): add query filetype (#17905) used for Tree-sitter queries uses Lisp runtime files (in Lua to distinguish from upstream runtime files) --- runtime/ftplugin/query.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 runtime/ftplugin/query.lua (limited to 'runtime/ftplugin') diff --git a/runtime/ftplugin/query.lua b/runtime/ftplugin/query.lua new file mode 100644 index 0000000000..c1694961af --- /dev/null +++ b/runtime/ftplugin/query.lua @@ -0,0 +1,6 @@ +-- Neovim filetype plugin file +-- Language: Tree-sitter query +-- Last Change: 2022 Mar 29 + +-- it's a lisp! +vim.cmd [[ runtime! ftplugin/lisp.vim ]] -- cgit