this post was submitted on 26 Jun 2023
62 points (94.3% liked)

Linux

48077 readers
762 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Helix does not aim to be a better vim / neovim. Thus, for example, there are officially no vim bindings and Helix follows the selection → action model. Helix is also a relatively new project.

https://github.com/helix-editor/helix/wiki/Differences-from

https://docs.helix-editor.com/title-page.html

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago (1 children)

I've been trying helix and the built in LSP integration is excellent. Out of the box it's capable of a lot when paired up with a good language server. The equivalent LSP integration on neovim takes some fat plugins.

I will say helix seems immature in a few areas. I noticed it's missing tab layouts present in vim. Also might it not be impossible to resize splits? There's also no linewise selection mode.

Helix out of the boz is close to my 15 years of accumulated vim config, but it seems like it's not quite there yet.

[–] nous 1 points 1 year ago

I noticed it’s missing tab layouts present in vim.

I always found the tab bar in vim to be confusing. Does not out the box do what other editors use it for. So I am glad that it is missing from helix in that form. As for a tab bar that other editors use, well I guess vim already beat into me the need to not really use one. I do find that I don't really miss it with all the ways to open files and select buffers in helix <space>b for instance to see and fuzzy search buffers is very nice (or <space>f for all files).

Also might it not be impossible to resize splits

Not yet it seems, though #1176 is tracking that and looks like someone implemented it a while ago. Might want to add your view to that issue to raise its importance.

There’s also no linewise selection mode.

X will extend the selection to full lines and x will also advance the selection by one line. I don't think there will ever be a separate linewise selection mode due to how helix treats new lines. Though these keys are good enough for most situations.