X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fcolemak%2FREADME.md;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fcolemak%2FREADME.md;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=4da4bc126cd3a7baf4c7199e14528209884c74d4;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/colemak/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/colemak/README.md deleted file mode 100644 index 4da4bc1..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/colemak/README.md +++ /dev/null @@ -1,48 +0,0 @@ -# Colemak plugin - -This plugin remaps keys in `zsh`'s [`vi`-style navigation mode](http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Keymaps) -for a [Colemak](https://colemak.com/) keyboard layout, to match the QWERTY position: - -![Colemak layout on a US keyboard](https://colemak.com/wiki/images/6/6c/Colemak2.png) - -To use it, add it to the plugins array in your `~/.zshrc` file: - -``` -plugins=(... colemak) -``` - -You will also need to enable `vi` mode, so add another line to `~/.zshrc`: -``` -bindkey -v -``` - -Restart your shell and hit the `` key to activate `vicmd` (navigation) mode, -and start navigating `zsh` with your new keybindings! - -## Key bindings for vicmd - -| Old | New | Binding | Description | -|------------|------------|---------------------------|----------------------------------------------------| -| `CTRL`+`j` | `CTRL`+`n` | accept-line | Insert new line | -| `j` | `n` | down-line-or-history | Move one line down or command history forwards | -| `k` | `e` | up-line-or-history | Move one line up or command history backwards | -| `l` | `i` | vi-forward-char | Move one character to the right | -| `n` | `k` | vi-repeat-search | Repeat command search forwards | -| `N` | `K` | vi-rev-repeat-search | Repeat command search backwards | -| `i` | `u` | vi-insert | Enter insert mode | -| `I` | `U` | vi-insert-bol | Move to first non-blank char and enter insert mode | -| `` | `l` | vi-undo-change | Undo change | -| `J` | `N` | vi-join | Join the current line with the next one | -| `e` | `j` | vi-forward-word-end | Move to the end of the next word | -| `E` | `J` | vi-forward-blank-word-end | Move to end of the current or next word | - -## Key bindings for less - -| Keyboard shortcut | `less` key binding | -|-------------------|--------------------| -| `n` | forw-line | -| `e` | back-line | -| `k` | repeat-search | -| `ESC`+`k` | repeat-search-all | -| `K` | reverse-search | -| `ESC`+`K` | reverse-search-all |