helix icon indicating copy to clipboard operation
helix copied to clipboard

A post-modern modal text editor.

Results 1421 helix issues
Sort by recently updated
recently updated
newest added
trafficstars

This pull requests closes #2558. The behavior of `:o` is modified such that when opening a directory, the file picker pane is opened on the chosen directory rather than returning...

ref: #3164 This PR introduces a new `[editor.file-types]` config section that will allow custom mappings between the default file type strings and user-defined custom strings. An example: ```toml [editor.file-types] "rust"...

On MacOS, ctrl-space is a system binding to switch keyboard layouts. As a result, the ["filter options" binding in pickers](https://docs.helix-editor.com/keymap.html#picker) is inaccessible via the default keybind on MacOS. Since rebinding...

C-bug
O-macos
A-keymap

It is possible to overwrite the runtime themes that come with Helix by putting a theme with the same name in the `.config/helix/themes` directory. This creates duplicate entries in the...

C-enhancement
A-helix-term

### Summary Errors do not show up in the local diagnostic picker (Shift g) while writing rust code with the rust analyzer. But they do show up in the global...

C-bug
A-language-server
A-helix-term

### Summary When popuping documentation in helix editor using rust plugin, the keys ctrl-d/ctrl-u doesn't scroll the popup doc window. ![image](https://user-images.githubusercontent.com/6579862/178849810-f627e844-d4a7-4cb4-8ce3-c1756f989ad3.png) ### Reproduction Steps Type code until the popup documentation...

C-bug
A-helix-term

Right now, this textobject only looks for pairs that surround the cursor. This ensures that the pair found encloses each selection, which is likely to be intuitively what is expected...

A-helix-term
S-waiting-on-review

Resolves #3228 by making matching brace highlighting configurable: `none`, `all`, `primary`, defaulting to `all`. New default behavior: ![image](https://user-images.githubusercontent.com/58790821/181749006-028e2cac-5d59-4b01-bf65-954282849635.png)

I tried the Linux version https://github.com/helix-editor/helix/releases/download/22.03/helix-22.03-x86_64-linux.tar.xz on Rocky Linux 8.5 (RHEL clone) and got: ``` hx: /lib64/libc.so.6: version `GLIBC_2.29' not found (required by hx) ``` Is it possible to supply...

C-enhancement
A-packaging

`jump_after_surrounding_pair` is a motion suggested by @dead10ck (https://github.com/helix-editor/helix/discussions/1209#discussioncomment-1741613) which jumps the cursor out to the point after current auto-pairs pairing. This can be used as a tabout mechanism. With auto-pairs...