blob: 07b885797c0dc0cefd5f29055b202f24205e2c20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
function _p9k_on_widget() {
zle _p9k_orig_$1 "${@:2}"
}
time ( repeat 1000 ( () {
local tmp=${TMPDIR:-/tmp}/p10k.bindings.$sysparams[pid]
{
bindkey >$tmp
local widget
for widget in ${(u)${${(f)"$(<$tmp)"}:#*\"}##* }; do
functions[_p9k_widget_$widget]='_p9k_on_widget '${(q)widget}' "$@"'
zle -A $widget _p9k_orig_$widget
zle -N $widget _p9k_widget_$widget
done
} always {
zf_rm -f $tmp
}
} ) ) # 2.774s
time ( repeat 1000 ( () {} ) ) # 0.960s
|