Kakoune-inspired key bindings for Visual Studio Code.
Dance provides Kakoune-inspired commands and key bindings for Visual Studio Code.
These key bindings are (mostly) compatible with Kakoune's, but are meant to be an addition to Visual Studio Code, rather than an emulation layer on top of it.
- Kakoune is an efficient and lightweight editor with a very small ecosystem. VS Code is an entire IDE with a huge ecosystem and many existing extensions.
- Kakoune is Unix only.
- Whether you prefer Vim, Emacs or Kakoune key bindings is a matter of preference. I, for one, prefer Kakoune's.
- Vim's key bindings are already available to VS Code users.
Why is it merely 'inspired' by Kakoune?
- Unlike VSCodeVim which attempts to emulate Vim, Dance's only goal is to provide VS Code-native commands and key bindings that are inspired by Kakoune.
- Kakoune, Vim and VS Code are all fully-fledged text editors; therefore, they have overlapping features. For instance, where VSCodeVim provides its own multi-cursor and command engines to feel more familiar to existing Vim users, Dance leaves multi-cursor mode and editor commands to VS Code entirely.
For most commands, the usage is the same as in Kakoune. However, the following changes have been made:
- Pipes no longer accept shell commands, but instead accept 'expressions', those being:
-
#<shell command>
: Pipes each selection into a shell command (the shell is taken from theterminal.external.exec
value). -
/<pattern>[/<replacement>[/<flags>]
: A RegExp literal, as defined in JavaScript. Do note the addition of areplacement
, for commands that add or replace text. -
<JS expression>
: A JavaScript expression in which the following variables are available:$
: Text of the current selection.$$
: Array of the text of all the selections.i
: Index of the current selection.
Depending on the result of the expression, it will be inserted differently:
string
: Inserted directly.number
: Inserted in its string representation.boolean
: Inserted astrue
orfalse
.null
: Inserted asnull
.undefined
: Inserted as an empty string.object
: Inserted as JSON.- Any other type: Leads to an error.
-
/(\d+),(\d+)/$1.$2/g
replaces12,34
into12.34
.i + 1
replaces1,1,1,1,1
into1,2,3,4,5
, assuming that each selection is on a different digit.
A few changes were made from Kakoune, mostly out of personal preference, and to make the extension integrate better in VS Code. If you disagree with any of these changes, you're welcome to open an issue to discuss it, or to add an option for it by submitting a PR.
- The cursor is not a block, but a line: Dance focuses on selections, and using a line instead of a block makes it obvious whether zero or one characters are selected. Besides, the line-shaped cursor is the default in VS Code.
- Changing the mode will also change the
editor.lineNumbers
configuration value toon
ininsert
mode, andrelative
in normal mode. - The default yank register
"
maps to the system clipboard.
Dance uses the built-in VS Code key bindings, and therefore does not override the type
command.
However, it sometimes needs access to the type
command, in dialogs and register selection,
for instance. Consequently, it is not compatible with extensions that always override the type
command, such as VSCodeVim; these extensions must therefore be disabled.
This project is a WIP. It's brand new, and far from complete.
In the following list, if a command is implemented, then its extending equivalent
(activated while pressing Shift
) then likely is implemented as well.
Most (but not all) commands defined in commands
are implemented.
- Basic movements:
- Arrows, hjkl.
- Move to character, move until character.
- Move to next word, move to previous word.
- Insert mode:
- Enter insert mode with
a
,i
,o
, and theirAlt
/Shift
equivalents. - Exit insert mode with
Escape
.
- Enter insert mode with
- Basic selections:
- Search in selections.
- Split in selections.
- Split selections by lines.
- Extend selections by taking lines.
- Trim selections.
- Pipes.
- Object selection.
- Yanking:
- Yank.
- Paste.
- Rotate:
- Rotate selections only.
- Rotate selections content only.
- Rotate selections and content.
- Changes:
- Join.
- Replace.
- Delete.
- Indent.
- Dedent.
- Change case.
- Search.
- History:
- Undo / redo.
- Forward / backward.
- Repeat command.
- Repeat insertion.
- Macros.
- Registers.
I'm working on this project as much as I can. However, since this is mostly something I'm making for myself, I'm focusing on getting this working fast. Therefore, I'm not focusing much on unit tests for now.
Contributions are welcome.