treesj icon indicating copy to clipboard operation
treesj copied to clipboard

Neovim plugin for splitting/joining blocks of code

Results 8 treesj issues
Sort by recently updated
recently updated
newest added

Split stopped working for multiline statements. e.g. ```go func New(param1 string, param2 int, param3 bool) { ... } var t := Some{ fieldA: "", fieldB: 0} ``` This was working...

Hi, I'm trying to add a forced join keymap to my config, but apparently passing a preset like this to the `toggle` and `join` methods is ignored: `{ max_join_length =...

enhancement

- feat: better dot-repeat support - feat: nested treesj

Perl has `if`, `unless` and `conditional` in pretty much the exact way that Ruby does (or the other way around really). Is there any chance of getting those added? My...

Add support for C#. I've been using this successfully, but it's very likely I've not implemented all useful node types. I figure this is a good start anyway.

Hello, Is it possible to add support for Terraform (for lists and maps) please?

enhancement

Hello, It would be great to support complex conditional cases (in `if` and `while`). Example: ```python if some_method(True) or another_condition(False) or something_else(): pass ``` That would split into: ```python if...