Skip to content

Axlefublr/helix

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

This is my helix fork

And it is, first and foremost, a personal fork.
I am one person, and will only implement features that I need, to minimize the cost of maintenance.

There is a small chance I'll add your requested feature, but that chance is very small; You will have more luck adding it yourself, to your own fork.

Ah yes, the wonderful plugin ecosystem of helix: just making a fork and modifying the source πŸ’€

I will arbitrarily add breaking changes, either to the changes already made by this fork, or to core. Autoupdating this fork is a bad idea, consequently. It would save your mental sanity to check the commits from time to time to see what changed, and decide to recompile again once there are features you want here, rather than trusting things to just continue working in the same way indefinitely.

There is one single place where all of the fork's changes are going to be listed β€” this readme! In the "This fork's changes" section you'll see below. Once you read it once, you'll be able to skim through it from time to time to see what changed; completely new features will appear at the bottom, sometimes in new sections.

This fork is based on helix master, not stable.
I will be rebasing on upstream master every time I see a feature I want from there.
Considering just how awfully slow helix development is in upstream, this might not happen often, but I am keeping a look at the new commits in master.

If there's a feature from master that you want to get and I haven't yet rebased on it, you can ask me in an issue, describing why you want that feature. I'm sorry for making that requirement, but I really want to minimize my effort maintaining this, so will only rebase when I don't need to, if it noticeably improves someone else's experience.

To conclude: this fork can be useful to you, if you want the features it implements, but I wouldn't say it's a fork you can rely on, like you would be able on upstream stable. One thing I can promise you though, is that I'm obscenely obsessed with configuring my editor, and so I will maintain this for as long as I use helix and as long as it doesn't have every single feature I want, lol. So the situation of the latest commit being 5 months ago, that I saw with another helix fork, is most likely not going to happen.

You can join my discord server if you want to hear me glaze helix (and talk about features I'm currently implementing).

If you want to contact me on discord without joining a server, my username is axlefublr.

Installation

To use this fork, you would have to build this repository from source.

First, cd into some place where you would like to keep this repository, so that you can easily update in the future.
I recommend to also read the docs on compiling helix from source, to make sure everything goes smoothly.
Then, execute this in your (linux) shell:

git clone --depth 1 https://github.com/Axlefublr/helix
cd helix
cargo install --path helix-term --locked
mkdir -p ~/.cargo/bin/
rm -fr ~/.cargo/bin/runtime
ln -sf $PWD/runtime ~/.cargo/bin/

Because I make a symlink, the runtime directory that helix requires gets updated automatically.
When files in the runtime/ directory of this repository (your locally stored copy) change, they change in the place where helix expects them, too.

To make sure the locations match up, see the output of helix --health.

The full path to the binary you'll get is ~/.cargo/bin/hx, so you will be able to use hx in your shell if ~/.cargo/bin is in your $PATH (it likely already is).
The helix package on arch actually gives you the executable helix, rather than hx. Here you will get hx even if you are on arch.

In the future, when you want to update, you would:

git pull
cargo install --path helix-term --locked

This fork's changes

Things like hover docs, pickers, and possibly other various popups have ctrl+d and ctrl+u hardcoded to mean "scroll by half a page down / up"
I change ctrl+d to be alt+l and ctrl+u to be alt+h.
I replace them specifically, because by default, ctrl+u overrides the very useful "delete until the start of the line" mapping.
So this change effectively also adds that mapping to pickers.

Adds hotkey to toggle preview in a picker: alt+; (default is ctrl+t).

In command mode (and other tab-completable prompts), alt+; acts the same as Tab.

In prompts (command mode, pickers, etc), alt+, moves you to the start of the line and alt+. to the end, like ctrl+a and ctrl+e also do.

shell_replace_with_output mappable action, that acts like shell_pipe, but doesn't pipe the selections into the command. So, just execute a command and replace selections with the output.

:random command with aliases :rnd, :rng that randomizes your selections.

whichkey option in the [editor] section can be set to true (default) or false.
If set to false, the infoboxes for mappings will not show up.
This is different from just disabling the auto-info option in that you will still get the popup for select_register.

should-statusline option in the [editor] section can be set to false to disable the statusline completely.
This exists because in default helix, even if you have no statusline elements in your statusline configuration, a default set of elements is drawn, rather than removing the statusline.
This option is designed to be disabled in your config, but you can set it on runtime as well (surprisingly).
It will look wonky if you do, so it makes the most sense to make a hotkey to toggle the statusline when / if you suddenly realize you want to see information in it (while not caring about it in the general case).

ephemeral-messages option in the [editor] section can now be set to true to make status / error messages at the bottom of the UI not take up an entire line. Instead, they will be printed over the editor view directly.

:echo command lets you print a message to the messages line. Useful for when you want to give visual feedback to some mappings, or to use command expansions.

:echopy command is exactly like :echo, but also puts the result into your clipboard. For example, you can do :echopy %p to copy the full path to the current file to your clipboard (this is elaborated on later).

All pickers now take up the entire screen, rather than 90%. Thanks to @satoqz for figuring out how to do this! :D

The insert-final-newline option now only inserts newline if the file is not empty.

Implemented PRs from upstream

Command expansions

Supported in: shell_pipe, shell_pipe_to, shell_insert_output, shell_append_output, shell_replace_with_output and all :commands. I'm not yet sure if the latter is a good idea, but feel free to :cd %p if you wish /j.

Example usage: :sh echo %p.

Considering our example context...

Thing Value
current buffer ~/prog/dotfiles/fish/abbreviations/percent.fish
current working directory ~/prog/dotfiles/fish
git repo root ~/prog/dotfiles

...here's what all command expansions would evaluate to:

Expansion Output Explanation
%p /home/username/prog/dotfiles/fish/abbreviations/percent.fish full path
%h /home/username/prog/dotfiles/fish/abbreviations "head" of the current buffer
%w /home/username/prog/dotfiles/fish helix's working directory (can be different from the directory you started helix in)
%g /home/username/prog/dotfiles git repo root
%r abbreviations/percent.fish filepath, relative to cwd (full path, if not inside cwd)
%q fish/abbreviations/percent.fish filepath, relative to git repo root (full path, if not inside git repo root)
%n percent.fish basename of the current buffer
%e fish extension
%l fish helix's language option (output of :lang)
%m %m not an expansion, taken literally
%%p %p escaped using %% to be taken literally

All expansions have an uppercase variant (%P, %H, %W, etc) that replaces /home/username with ~.
The reason they exist is because I disable the statusline, and make a bunch of mappings that use :echo to print a path to the statusline.
Seeing /home/username all the time would feel quite bloaty.
If you find another use for them, nice! But in the general case you'll want to use the lowercase variants.

Caution

The resulting path is not escaped in any way. If it contains spaces, that may be a problem, depending on what command you're using the expansion in. You may want to quote expansions, in that case.

Harp integration

Inspired by harp-nvim, implemented using the harp library.

A "harp" is essentially a storage unit. It lets you store some information from the editor to then use later.
Harps are persistent. Once you set a harp, it stays forever (until overwritten by you) and gets shared across helix sessions.
Even if you have multiple helix sessions open at a time, if you set a harp in one session, it will immediately become available in all sessions.

Harp "sections" exist to organize multiple different sets of harps.
If all harps were stored in a single place, that would lead to name collisions: if you set a file harp a, you wouldn't be able to set a register harp a β€” the latter would override the former.
So, all harp types are stored within their own "harp section", letting you use the same harp names without name collisions.

Each harp type has two actions: get and set.
Both of them place you into an input field to type the name of the harp into.
set takes some information from the environment (for example, the current buffer's filepath), and stores it in a harp. get takes that information from a harp, and applies it somehow (for example, :opens the stored filepath).

The main idea of all harp types, is to let you store information by aliasing it:
Instead of typing in a long file path, search pattern, or plain text, you can store it under a shorter, and more convenient alias.

File harps

harp_file_set
harp_file_get

set takes the current buffer's filepath, and stores it in a harp.
get takes it, and :opens it.

Relative file harps

harp_relative_file_set
harp_relative_file_get

set takes the current buffer's filepath, and stores it in a harp.
HOWEVER, it stores only the part of the full path, that's relative to current working directory.

Say your current buffer path is ~/prog/dotfiles/colors.css and your current working directory is ~/prog/dotfiles.
If you use a normal file harp, you will store the full path: ~/prog/dotfiles/colors.css.
If you use a relative file harp, you will store the relative path: colors.css.

So then, the get action will just open that path relatively β€” as if you did :o colors.css. This will end up opening a different file depending on your current working directory.

The design idea behind this, is to store paths that repeat in project structures.

Look at these paths for example: .gitignore, src/main.rs, src/lib.rs, Cargo.toml, .git/info/exclude, README.md, CONTRIBUTING.md
All of these tend to repeat in a lot of projects β€” they're not particularly unique paths. So it doesn't make sense to store them in normal file harps, that are designed for unique paths.
Instead with relative file harps, you get to efficiently refer to "the same file", which ends up being a different actual file depending on your current working directory.

Cwd harps

harp_cwd_set
harp_cwd_get

set stores your current working directory in a harp, get :cds into a stored working directory.

Search harps

harp_search_set
harp_search_get

set takes your latest search pattern from register / and stores it in a harp.
get takes a stored search pattern, and puts it back into register /, effectively "making a search".

Register harps

harp_register_set
harp_register_get

set puts the contents of your default register (") into a harp.
get puts the stored text back into your default register (")

If you use set while having multiple selections, they are joined into a single one with newlines.


Now that you're familiar with all the harp types, let me introduce you to the feature of relativity.

Normally-named harps are "global" harps. Harps that are not relative to anything.

If a harp name starts with a ., it becomes relative to your current working directory.
If starts with ,, relative to the current buffer.
If starts with ;, relative to the filetype (run :lang to check the filetype of the current buffer).

Remember how different harp types are stored in different sections to fight against name collisions?
The same thing happens here: "relativity" is made by appending the directory path / buffer path / filetype onto the name of each section.

This way, you can have "global" file harps, but also file harps that are specific to the current project you're working on.

Useful global searches like (TODO|FIXME|HACK|MOVE):?, and buffer-specific searches like // asdf I left off here.

Project-specific register harps, as a way to gain register session persistence, and filetype-specific register harps, that can act as a basic snippet implementation.

When using harp relativity, you may eventually notice that you mostly want a certain relativity for a given harp type: global searches are rarer to want compared to project local ones, for example.

You can actually change the default relativity, from "global"!

When using a harp (whether get or set, doesn't matter), if you just supply . / , / ; / ' as your harp name (without anything afterwards), you will set the default relativity for that harp type only.

' sets the default relativity back to "global", as you may have guessed. I omitted it above for clarity, but you can use ' at the start of your harp names to override relativity to be global.

The workflow goes like this:

  1. use a harp action
  2. enter just ,
  3. now this harp action is relative to the current buffer by default. this stays forever, until you override it
  4. use it again, now entering a
  5. you used what is equivalent to ,a, but without having to type in ,, because you changed the default relativity
  6. use it again, now entering 'a
  7. you just used the global relativity, overriding the (new) default of buffer-relative
  8. use it again, now entering just '
  9. you set default relativity back to "global"

How you use relativity is up to you! In some cases relativity doesn't make sense logically, but this approach lets me implement flexible functionality that you may, in some cases, use in ways that I didn't think of.


Helix

Build status GitHub Release Documentation GitHub contributors Matrix Space

Screenshot

A Kakoune / Neovim inspired editor, written in Rust.

The editing model is very heavily based on Kakoune; during development I found myself agreeing with most of Kakoune's design decisions.

For more information, see the website or documentation.

All shortcuts/keymaps can be found in the documentation on the website.

Troubleshooting

Features

  • Vim-like modal editing
  • Multiple selections
  • Built-in language server support
  • Smart, incremental syntax highlighting and code editing via tree-sitter

Although it's primarily a terminal-based editor, I am interested in exploring a custom renderer (similar to Emacs) using wgpu or skulpin.

Note: Only certain languages have indentation definitions at the moment. Check runtime/queries/<lang>/ for indents.scm.

Installation

Installation documentation.

Packaging status

Contributing

Contributing guidelines can be found here.

Getting help

Your question might already be answered on the FAQ.

Discuss the project on the community Matrix Space (make sure to join #helix-editor:matrix.org if you're on a client that doesn't support Matrix Spaces yet).

Credits

Thanks to @jakenvac for designing the logo!

About

My helix fork, with some personal changes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 83.2%
  • Scheme 15.8%
  • Handlebars 0.4%
  • Nix 0.3%
  • CSS 0.1%
  • Shell 0.1%
  • Other 0.1%