From: Michael Prokop Date: Thu, 21 Jul 2011 10:25:33 +0000 (+0200) Subject: zshrc: use history-beginning-search-{forward,backward}-end instead of the version... X-Git-Tag: v0.4.00~2 X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=e82bb71fc732483b11b875a725677a4724851422;p=grml-etc-core.git zshrc: use history-beginning-search-{forward,backward}-end instead of the version without "-end". This further improves Bernhard's history-beginning-search with PageUp/PageDown feature as it moves the cursor at the end of the line then. Thanks: Frank Terbeck --- diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 1f8cdaa..2410304 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -625,14 +625,18 @@ bindkey "\e[1;5D" backward-word bindkey '^[[1;3C' forward-word bindkey '^[[1;3D' backward-word -bindkey '^xp' history-beginning-search-backward -bindkey '^xP' history-beginning-search-forward -bindkey "\e[5~" history-beginning-search-backward #PageUp -bindkey "\e[6~" history-beginning-search-forward #PageDown +# Search backward in the history for a line beginning with the current +# line up to the cursor and move the cursor to the end of the line then +zle -N history-beginning-search-backward-end history-search-end +zle -N history-beginning-search-forward-end history-search-end +bindkey '^xp' history-beginning-search-backward-end +bindkey '^xP' history-beginning-search-forward-end +bindkey "\e[5~" history-beginning-search-backward-end # PageUp +bindkey "\e[6~" history-beginning-search-forward-end # PageDown + # bindkey -s '^L' "|less\n" # ctrl-L pipes to less # bindkey -s '^B' " &\n" # ctrl-B runs it in the background - # insert unicode character # usage example: 'ctrl-x i' 00A7 'ctrl-x i' will give you an ยง # See for example http://unicode.org/charts/ for unicode characters code