Michael Davis
                                            Michael Davis
                                        
                                    In general Helix checks for the shebang if it can't find a `file-types` entry that matches. The file-types entries though will match for filenames that match the exact file-type entry...
I'll leave this open and add some tags to it. Since there's a workaround (the languages.toml snippet) and it's unlikely to occur most of the time, I don't think it's...
Actually it looks to me like this is about being able to remap minor modes like `w` than remapping commands on components. I doubt that we would want to refactor...
I haven't looked at this yet but also see https://github.com/helix-editor/helix/pull/4635 which I think will have some overlap implementation-wise
`A-/` has never been bound in the keymap - you can search for it with `git log -S 'A-/'` and `git log -S "alt!('/"`. For that use-case we could respect...
I believe it's just an oversight. Currently select mode has no effect in `search`/`rsearch` but I don't think that's intentional
That isn't about respecting mode. `search`/`rsearch` handle select mode differently than all other commands by adding selections rather than extending them. `gw`'s behavior is the way select mode should generally...
That's https://github.com/helix-editor/helix/issues/3035, it's not related to this PR
It would be possible to remap this yourself with https://github.com/helix-editor/helix/issues/4423. For now you can edit the alias in the source if you're building from source: https://github.com/helix-editor/helix/blob/3cf5216dbd1b9c767e6a922f93f1a3b1a2955d02/helix-term/src/commands/typed.rs#L1852 I don't think this...
AFAIK it isn't possible to make a command like that with the current set of commands. It seems like a rather niche workflow to me though so I would prefer...