this post was submitted on 26 Jun 2023
71 points (94.9% liked)
Linux
48052 readers
979 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Are these for scripting outside of vim (but using vim)? If so you can probably still use these with vim and helix for interactive editing. Unless I am misunderstanding what you mean by that feature.
<space>d
(current file) and<space>D
open a window of issues as reported by the current LSP which you can use to jump to the selected issue (with fuzzy filtering).Looks like there is some basic support for lsp snippets which looks like you can add your own but a wider issue for better snippet support is being tracked here. So not ideal yet, but will hopefully improve over time.
It does have git gutter support and the
:reset-diff-change
command currently. And you can run git commands with:sh git ...
though that experience could be improved. Staging changes is still pending here as is diffing changes here which look like there is work slowly being done on these.So there are some workarounds for some of the things you need - and improvements being made to those that are missing. Might take some time for these areas to improve though and it depends on how you use those features as if/when things are good enough for your usecase.
There are many cases I actually prefer the quickfix list to an interactive picker:
:Cfilter
to filter things matched in the quickfix list and:colder
/:cnewer
to navigate the history of the quickfix list without having to rerun the command:cdo norm gcc
to comment the matched lines (with the vim-commentary plugin), run a macro with:cdo norm @q
, or:cdo yank A
to put all the matched lines in thea
register for example. You can also do stuff like:cdo -10,+10g/re/p
to print all lines matching some regular expressionre
within the range of 10 lines before to 10 lines after the match.:Git diftool
to get diffs. Vim also has support for parsing the output of many compilers and linting tools so you can use e.g.:compiler cargo
followed by:make
to build the current project with cargo and get any build errors in the quickfix list.In short, interactive pickers are better for browsing, but the quickfix list is better for scipting and holding on to data for longer without having to rerun commands, and can with some basic scripting be used for more things.
Afaik helix doesn't have diff capabilities which is also a major thing missing from my git workflow.
I expect some of these things to make it into helix eventually, particularly git stuff, but I would be surprised if they add support for more weird janky vim stuff like the quickfix list and ex commands, which is a valid design decision, but they are also very useful tools once you get your head around them.