diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-07-01 11:19:31 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-07-01 11:28:32 +0200 |
commit | 88c8803aa167806f32272e5f344af00b98a91f01 (patch) | |
tree | 115fe765897f6b2423a7628dbeb782b1e1e6e380 /runtime/queries/python/folds.scm | |
parent | 11844dde81c41bded54f2383b57f8eef406f2736 (diff) | |
download | rneovim-88c8803aa167806f32272e5f344af00b98a91f01.tar.gz rneovim-88c8803aa167806f32272e5f344af00b98a91f01.tar.bz2 rneovim-88c8803aa167806f32272e5f344af00b98a91f01.zip |
feat(treesitter): add python parser and queries
Diffstat (limited to 'runtime/queries/python/folds.scm')
-rw-r--r-- | runtime/queries/python/folds.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/runtime/queries/python/folds.scm b/runtime/queries/python/folds.scm new file mode 100644 index 0000000000..78e1e2c00d --- /dev/null +++ b/runtime/queries/python/folds.scm @@ -0,0 +1,28 @@ +[ + (function_definition) + (class_definition) + + (while_statement) + (for_statement) + (if_statement) + (with_statement) + (try_statement) + (match_statement) + + (import_from_statement) + (parameters) + (argument_list) + + (parenthesized_expression) + (generator_expression) + (list_comprehension) + (set_comprehension) + (dictionary_comprehension) + + (tuple) + (list) + (set) + (dictionary) + + (string) +] @fold |