Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add section about status bar segments #195

Merged
merged 1 commit into from
Sep 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ of it.
provide VS Code-native [commands][vsccommands] and
[key bindings][vsckeybindings] that are inspired by [Kakoune].
- Some features are provided to mimic Kakoune's behavior (e.g. treating
positions as coordonates of characters, rather than carets between
positions as coordinates of characters, rather than carets between
characters like VS Code), but are optional.
- Kakoune, Vim and VS Code are all fully-fledged text editors; therefore, they
have overlapping features. For instance, where [VSCodeVim] provides its own
Expand Down Expand Up @@ -150,6 +150,18 @@ being:
- `i + 1` replaces `1,1,1,1,1` into `1,2,3,4,5`, assuming that each selection is
on a different digit.

### Status bar

Dance provides several status bar segments (left-aligned) exposing info similar
to Kakoune's default mode-line. Most of them are hidden by default and only shown
contextually:

- current mode: click to switch to another mode
- macro recording status: click to stop recording
- current count prefix: click to reset to 0
- current register: click to unset
- dance error: click to copy the full description of the last error

### Miscellaneous changes

A few changes were made from Kakoune, mostly out of personal preference, and to
Expand Down