From 658698f66d715bd8dbc40d46ec5eec4834d8a524 Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Tue, 30 Jun 2020 03:15:10 +0200 Subject: [PATCH] Remove not properly working selection bindings --- .config/zsh/plugins/keys.zsh | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.config/zsh/plugins/keys.zsh b/.config/zsh/plugins/keys.zsh index b171645..07b14ab 100644 --- a/.config/zsh/plugins/keys.zsh +++ b/.config/zsh/plugins/keys.zsh @@ -55,28 +55,3 @@ zle -N _expandDots bindkey . _expandDots -## Support selecting with shift and the keyboard -## Does not quite work yet - shift-arrow() { - ((REGION_ACTIVE)) || zle set-mark-command - zle $1 - } - shift-left() shift-arrow backward-char - shift-right() shift-arrow forward-char - shift-left-word() shift-arrow backward-word - shift-right-word() shift-arrow forward-word - toggle-select() zle set-mark-command - #select-all() - zle -N shift-left - zle -N shift-right - zle -N shift-left-word - zle -N shift-right-word - zle -N toggle-select - - bindkey '^[[1;2D' shift-left - bindkey '^[[1;2C' shift-right - bindkey '^[[1;6D' shift-left-word - bindkey '^[[1;6C' shift-right-word - - # bindkey '^S' toggle-select - # bindkey '^A' select-all