summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/colemak
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/colemak
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/colemak')
-rw-r--r--zsh/oh-my-zsh/plugins/colemak/.gitignore1
-rw-r--r--zsh/oh-my-zsh/plugins/colemak/README.md48
-rw-r--r--zsh/oh-my-zsh/plugins/colemak/colemak-less6
-rw-r--r--zsh/oh-my-zsh/plugins/colemak/colemak.plugin.zsh38
4 files changed, 0 insertions, 93 deletions
diff --git a/zsh/oh-my-zsh/plugins/colemak/.gitignore b/zsh/oh-my-zsh/plugins/colemak/.gitignore
deleted file mode 100644
index 8241f5e..0000000
--- a/zsh/oh-my-zsh/plugins/colemak/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-.less
diff --git a/zsh/oh-my-zsh/plugins/colemak/README.md b/zsh/oh-my-zsh/plugins/colemak/README.md
deleted file mode 100644
index 4da4bc1..0000000
--- a/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 `<ESC>` 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 |
-| `<none>` | `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 |
diff --git a/zsh/oh-my-zsh/plugins/colemak/colemak-less b/zsh/oh-my-zsh/plugins/colemak/colemak-less
deleted file mode 100644
index e4ca4fa..0000000
--- a/zsh/oh-my-zsh/plugins/colemak/colemak-less
+++ /dev/null
@@ -1,6 +0,0 @@
-n forw-line
-e back-line
-k repeat-search
-\ek repeat-search-all
-K reverse-search
-\eK reverse-search-all
diff --git a/zsh/oh-my-zsh/plugins/colemak/colemak.plugin.zsh b/zsh/oh-my-zsh/plugins/colemak/colemak.plugin.zsh
deleted file mode 100644
index e6a46f2..0000000
--- a/zsh/oh-my-zsh/plugins/colemak/colemak.plugin.zsh
+++ /dev/null
@@ -1,38 +0,0 @@
-# ctrl-j newline
-bindkey '^n' accept-line
-bindkey -a '^n' accept-line
-
-# another rotation to match qwerty
-bindkey -a 'n' down-line-or-history
-bindkey -a 'e' up-line-or-history
-bindkey -a 'i' vi-forward-char
-
-# make qwerty
-bindkey -a 'k' vi-repeat-search
-bindkey -a 'K' vi-rev-repeat-search
-bindkey -a 'u' vi-insert
-bindkey -a 'U' vi-insert-bol
-bindkey -a 'l' vi-undo-change
-bindkey -a 'N' vi-join
-
-# spare
-bindkey -a 'j' vi-forward-word-end
-bindkey -a 'J' vi-forward-blank-word-end
-
-# Handle $0 according to the standard:
-# https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html
-0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}"
-0="${${(M)0:#/*}:-$PWD/$0}"
-
-# New less versions will read this file directly
-export LESSKEYIN="${0:h:A}/colemak-less"
-
-# Only run lesskey if less version is older than v582
-less_ver=$(less --version | awk '{print $2;exit}')
-autoload -Uz is-at-least
-if ! is-at-least 582 $less_ver; then
- # Old less versions will read this transformed file
- export LESSKEY="${0:h:A}/.less"
- lesskey -o "$LESSKEY" "$LESSKEYIN" 2>/dev/null
-fi
-unset less_ver