mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-09 19:51:26 +01:00
41232: Use page up/down keys in zed keymap.
Find with terminfo where available.
This commit is contained in:
parent
11d2dbda38
commit
d6d7ef2a0d
2 changed files with 28 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2017-06-07 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* Sebastian: 41232: Functions/Misc/zed: use terminfo to find
|
||||
page up/down keys where available.
|
||||
|
||||
2017-06-05 Barton E. Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 41225: Src/params.c: sethparam() should not attempt to change
|
||||
|
|
|
@ -39,6 +39,24 @@ local curcontext=zed:::
|
|||
zstyle -m ":completion:zed:*" insert-tab '*' ||
|
||||
zstyle ":completion:zed:*" insert-tab yes
|
||||
|
||||
zmodload zsh/terminfo 2>/dev/null
|
||||
|
||||
__zed_pg_up()
|
||||
{
|
||||
integer count=$(( LINES / 2 - 1 ))
|
||||
while (( count -- )); do
|
||||
zle up-line
|
||||
done
|
||||
}
|
||||
|
||||
__zed_pg_down()
|
||||
{
|
||||
integer count=$(( LINES / 2 - 1 ))
|
||||
while (( count -- )); do
|
||||
zle down-line
|
||||
done
|
||||
}
|
||||
|
||||
if (( bind )) || ! bindkey -M zed >&/dev/null; then
|
||||
# Make the zed keymap a copy of the current main.
|
||||
bindkey -N zed main
|
||||
|
@ -54,6 +72,11 @@ if (( bind )) || ! bindkey -M zed >&/dev/null; then
|
|||
bindkey -M zed '^x^w' accept-line
|
||||
bindkey -M zed '^M' self-insert-unmeta
|
||||
|
||||
zle -N __zed_pg_up
|
||||
zle -N __zed_pg_down
|
||||
[[ ${+terminfo} = 1 && -n "$terminfo[kpp]" ]] && bindkey -M zed "$terminfo[kpp]" __zed_pg_up
|
||||
[[ ${+terminfo} = 1 && -n "$terminfo[knp]" ]] && bindkey -M zed "$terminfo[knp]" __zed_pg_down
|
||||
|
||||
# Make zed-set-file-name available.
|
||||
# Assume it's in fpath; there's no error at this point if it isn't
|
||||
autoload -Uz zed-set-file-name
|
||||
|
|
Loading…
Reference in a new issue