kak-tree
kak-tree copied to clipboard
Structural selections for Kakoune
Use this file: ``` int main(void) { printf("hello world\n"); return 0; } ``` Select from ```p``` to ```;``` on the ```printf``` line. Now running ```tree-select-parent-node```, ```tree-select-next-node```, and ```tree-select-previous-node``` are no-ops.
...could be added leveraging https://crates.io/crates/tree-sitter-highlight
Hi, I have been advised to use kak-tree for a plugin I'm working on. But I have trouble getting started with it. What are the value I can use in...
Hi, I wanted to explore what parts of the buffer the different navigation functions span in an interactive and dynamic way so I wrote this script. Wasn't sure where to...
See https://github.com/ul/kak-lsp/issues/245
None of `tree-*` commands respect my config, which has some blacklist for go file types. I've `tree_cmd` option set in my kakrc and it expands correctly: ``` set-option global tree_cmd...
See https://github.com/emacs-lsp/lsp-mode/issues/817 :-)
Raw Kakoune has commands to add and move selections through the file's linear structure, like `h` and `C` and `]p`. kak-tree has commands to add and move selections through the...
Hi! `kak-tree` is panicking when [trying to set the language](https://github.com/ul/kak-tree/blob/b2b8539ddf6aee43abfd2131f15ed667ea3855f5/src/main.rs#L88) (in this current case, to Rust, but it also happens for any other language I've tested) with the following message:...