neovim

Personal neovim configuration files
git clone git://gtms.dev/neovim
Log | Files | Refs

context.scm (411B)


      1 (function_body) @context
      2 
      3 (for_statement 
      4   body: (_) @context.end
      5 ) @context
      6 
      7 (while_statement 
      8   body: (_) @context.end
      9 ) @context
     10 
     11 (do_statement 
     12   body: (_) @context.end
     13 ) @context
     14 
     15 (try_statement
     16   body: (_) @context.end
     17 ) @context
     18 
     19 (if_statement 
     20   consequence: (_) @context.end
     21 ) @context
     22 
     23 (class_definition
     24   body: (_) @context.end
     25 ) @context
     26 
     27 (extension_declaration
     28   body: (_) @context.end
     29 ) @context