Gokul Soumya
Gokul Soumya
Drawing borders for popups feel like a good default whereas having a config option for it feels a bit overkill. I suppose some might prefer a sleeker look without the...
Indent support requires an `indents.toml` file describing the tree-sitter syntax nodes where it should be automatically inserted, for example see https://github.com/helix-editor/helix/blob/master/runtime/queries/rust/indents.toml. Python doesn't yet have this file, so contributions are...
This is probably an upstream bug since we indeed don't have [`DISAMBIGUATE_ESCAPE_CODES`][1] enabled which seems to be the prerequisite to getting the [`Media`][2] keycodes which is where the code panics:...
The completion logic [seems to be rudimentary right now][1], so I suppose this is expected. [1]: https://github.com/move-language/move/blob/dfc34400004fa91bdd4bcaf40e3ac8156f512891/language/move-analyzer/src/completion.rs#L148
When there's only a single cursor with a selection width of 1, the current LONG word is considered as the filename, so it's similar to doing `miWgf`: https://github.com/helix-editor/helix/blob/7f75458e6f29f2dc0717557a1072b70deee27acb/helix-term/src/commands.rs#L1028-L1044 We could...
There's a `clear` function that is defined on [`Compositor.terminal`][1]: https://github.com/helix-editor/helix/blob/7f75458e6f29f2dc0717557a1072b70deee27acb/helix-tui/src/terminal.rs#L214-L219 It should be possible to add a redraw command/keybind that calls this method by adding a [`Job`][2], something like this:...
This doesn't seem to fix the syntax highlighting for me with the [test file mentioned][1]: ```bash $ cat > ~/.config/helix/languages.toml [[grammar]] name = "scala" source = { git = "https://github.com/tree-sitter/tree-sitter-scala",...
How about `:read-file-into-buffer`? `:read` isn't very descriptive of what it reads, what it does to the read file, etc. We can still have the aliases for `:read` and `:r`.
> Does Helix use skim [as a library](https://github.com/lotabout/skim#use-as-a-library)? We're using the `fuzzy-matcher` crate which is used internally by skim.
There's no open PR for this issue, but the code in #3110 and #3172 introduce a kind of picker that allows re-populating it with different results whenever the search query...