diff options
| author | Seth Barberee <seth.barberee@gmail.com> | 2022-06-07 02:10:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-07 09:10:09 +0200 |
| commit | b705435453189521fce6736a8d24be042b0cbdeb (patch) | |
| tree | 797847ef8d37fe98558a0dc6a0b0899bc4a72cb3 /queries/vim | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-b705435453189521fce6736a8d24be042b0cbdeb.tar nvim-treesitter-b705435453189521fce6736a8d24be042b0cbdeb.tar.gz nvim-treesitter-b705435453189521fce6736a8d24be042b0cbdeb.tar.bz2 nvim-treesitter-b705435453189521fce6736a8d24be042b0cbdeb.tar.lz nvim-treesitter-b705435453189521fce6736a8d24be042b0cbdeb.tar.xz nvim-treesitter-b705435453189521fce6736a8d24be042b0cbdeb.tar.zst nvim-treesitter-b705435453189521fce6736a8d24be042b0cbdeb.zip | |
vim: add basic folding for if statements and functions (#2994)
Diffstat (limited to 'queries/vim')
| -rw-r--r-- | queries/vim/folds.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/queries/vim/folds.scm b/queries/vim/folds.scm new file mode 100644 index 000000000..4c9973583 --- /dev/null +++ b/queries/vim/folds.scm @@ -0,0 +1,4 @@ +[ + (if_statement) + (function_definition) +] @fold |
