1
0
Fork 0
mirror of synced 2024-06-30 19:41:10 -04:00
Commit graph

7 commits

Author SHA1 Message Date
BluishHumility d42fe80486
fix(micro): remove DeleteWordLeft binding
Remove ctrl+backspace > DeleteWordLeft binding.

This is a good binding and I think it makes sense to have it as a default, however
during testing I have discovered that not all terminals present these keys to Micro
the same way. For example, in Xterm for some reason "OldBackspace" is the backspace
key and "Backspace" is ctrl+backspace, so unfortunately just pressing backspace invokes
DeleteWordLeft with the binding as committed.

In the case of Xterm, the correct way to bind ctrl+backspace to DeleteWordLeft would be
like this:

    "Backspace": "DeleteWordLeft",
    "OldBackspace": "Backspace"

In any case, it is probably best we do not set this by default and leave it up to the user
to decide if they would like to set this binding on their own.
2024-04-04 16:39:22 -04:00
BluishHumility ee4ce025de
feat(micro): add DeleteWordLeft binding
Add ctrl+backspace > DeleteWordLeft binding. This is a fairly common
binding in many other applications.
2023-12-25 12:42:37 -05:00
BluishHumility 93f0691b06 feat(garuda-common-settings): add syntax highlighting for configs in micro
Add syntax highlighting for config files opened in Micro that don't directly call a shell.
* Add a syntax definition for `filetype: conf` in `syntax/conf.yaml` with some basic rules (for example, highlighting commented lines);
* Define `/etc/*` and `/home/*/.config/*` as conf filetype in `settings.json`, because they contain a lot of config files that don't end in ".conf" or ".cfg".
2023-11-11 10:27:16 -05:00
Nico 2987bba053
Update aspell plugin 2022-08-14 13:47:06 +02:00
dr460nf1r3 65fb156ff6
Make micro use transparent theme, update plugins 2021-05-16 19:58:23 +02:00
Nico Jensch 33534c42cf Add choices to assistant, remove micro theming
to
2020-11-13 12:44:17 +01:00
Nico Jensch c8671c2466 Add micro config 2020-11-10 09:45:58 +01:00