update prezto

This commit is contained in:
2018-11-18 23:37:19 +04:00
parent a17ecf9f57
commit 2808949f26
352 changed files with 15169 additions and 25328 deletions

View File

@@ -28,10 +28,18 @@
# -------------------------------------------------------------------------------------------------
local x=/usr/bin/env
BUFFER='$x "argument"'
local y=sudo
local -a z; z=(zsh -f)
sudo(){}
BUFFER='$x "argument"; $y; $z'
expected_region_highlight=(
"1 2 command" # $x
"4 13 default" # "argument"
"4 13 double-quoted-argument" # "argument"
"14 14 commandseparator" # ;
"16 17 precommand" # $y (sudo)
"18 18 unknown-token" # ;
"20 21 command" # $z - 'zsh' being the command
)