1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 04:30:24 +02:00

Enable the insert-tab style in zed.

This commit is contained in:
Bart Schaefer 2000-07-26 09:24:24 +00:00
parent f303f2ea63
commit 714efe5ff9
2 changed files with 9 additions and 0 deletions

View file

@ -4,6 +4,10 @@
Doc/Zsh/compsys.yo: Separate compinit security checks into their Doc/Zsh/compsys.yo: Separate compinit security checks into their
own callable function. own callable function.
* 12370: Functions/Misc/zed: Add a context for controlling
completion within zed, and a style to enable tab insertion at the
beginnings of lines in zed by default.
* 12162: Completion/Core/_expand, Completion/Core/_path_files, * 12162: Completion/Core/_expand, Completion/Core/_path_files,
Src/utils.c: Use `eval' instead of `$(print ...)' to suppress Src/utils.c: Use `eval' instead of `$(print ...)' to suppress
some syntax error failures; this requires that zwarn() does not some syntax error failures; this requires that zwarn() does not

View file

@ -19,6 +19,11 @@ integer TMOUT=0
[[ -z "$1" ]] && echo 'Usage: "zed filename" or "zed -f function"' && return 1 [[ -z "$1" ]] && echo 'Usage: "zed filename" or "zed -f function"' && return 1
local curcontext=zed:::
zstyle -m ":completion:zed:*" insert-tab '*' ||
zstyle ":completion:zed:*" insert-tab yes
# catch interrupts # catch interrupts
cleanup="$(bindkey -L "^M"; bindkey -L -M emacs "^X^W"; bindkey -aL "ZZ" cleanup="$(bindkey -L "^M"; bindkey -L -M emacs "^X^W"; bindkey -aL "ZZ"
echo "trap - INT EXIT"; trap)" echo "trap - INT EXIT"; trap)"