@@ -312,7 +312,7 @@ _zsh_highlight_highlighter_main_paint()
312
312
local flags_sans_argument
313
313
# $flags_solo is a set of letters, corresponding to option letters that, if
314
314
# present, mean the precommand will not be acting as a precommand, i.e., will
315
- # not be followed by a : start: word.
315
+ # not be followed by an 's' ( start) word.
316
316
local flags_solo
317
317
# $_zsh_highlight_main__precommand_options maps precommand name to values of
318
318
# $flags_with_argument, $flags_sans_argument, and flags_solo for that precommand,
@@ -451,25 +451,25 @@ _zsh_highlight_main_highlighter_highlight_list()
451
451
# State machine
452
452
#
453
453
# The states are:
454
- # - :start: Command word
455
- # - :start_of_pipeline: Start of a 'pipeline' as defined in zshmisc(1).
456
- # Only valid when :start: is present
457
- # - :sudo_opt: A leading-dash option to a precommand, whether it takes an
458
- # argument or not. (Example: sudo's "-u" or "-i".)
459
- # - :sudo_arg: The argument to a precommand's leading-dash option,
460
- # when given as a separate word; i.e., "foo" in "-u foo" (two
461
- # words) but not in "-ufoo" (one word).
462
- # Note: :sudo_opt: and :sudo_arg: are used for any precommand
463
- # declared in ${_zsh_highlight_main__precommand_options}, not just
464
- # for sudo(8). The naming is historical.
465
- # - :regular: "Not a command word", and command delimiters are permitted.
466
- # Mainly used to detect premature termination of commands.
467
- # - :always: The word 'always' in the «{ foo } always { bar }» syntax.
454
+ # - s Command word
455
+ # - p Start of a 'pipeline' as defined in zshmisc(1).
456
+ # Only valid when 's' is present
457
+ # - o A leading-dash option to a precommand, whether it takes an
458
+ # argument or not. (Example: sudo's "-u" or "-i".)
459
+ # - a The argument to a precommand's leading-dash option,
460
+ # when given as a separate word; i.e., "foo" in "-u foo" (two
461
+ # words) but not in "-ufoo" (one word).
462
+ # Note: 'o' and 'a' are used for any precommand
463
+ # declared in ${_zsh_highlight_main__precommand_options}, not just
464
+ # for sudo(8). The naming is historical.
465
+ # - r "Not a command word", and command delimiters are permitted.
466
+ # Mainly used to detect premature termination of commands.
467
+ # - w The word 'always' in the «{ foo } always { bar }» syntax.
468
468
#
469
469
# When the kind of a word is not yet known, $this_word / $next_word may contain
470
470
# multiple states. For example, after "sudo -i", the next word may be either
471
- # another --flag or a command name, hence the state would include both ':start: '
472
- # and ':sudo_opt: '.
471
+ # another --flag or a command name, hence the state would include both 's '
472
+ # and 'o '.
473
473
#
474
474
# The tokens are always added with both leading and trailing colons to serve as
475
475
# word delimiters (an improvised array); [[ $x == *':foo:'* ]] and x=${x//:foo:/}
@@ -497,7 +497,7 @@ _zsh_highlight_main_highlighter_highlight_list()
497
497
# - parameter elision in command position
498
498
# - 'repeat' loops
499
499
#
500
- local this_word next_word=' :start::start_of_pipeline: '
500
+ local this_word next_word=' sp '
501
501
integer in_redirection
502
502
# Processing buffer
503
503
local proc_buf=" $buf "
@@ -538,7 +538,7 @@ _zsh_highlight_main_highlighter_highlight_list()
538
538
# Initialize this_word and next_word.
539
539
if (( in_redirection == 0 )) ; then
540
540
this_word=$next_word
541
- next_word=' :regular: '
541
+ next_word=' r '
542
542
elif (( ! in_param )) ; then
543
543
# Stall $next_word.
544
544
(( -- in_redirection ))
@@ -552,7 +552,7 @@ _zsh_highlight_main_highlighter_highlight_list()
552
552
# $saw_assignment boolean flag for "was preceded by an assignment"
553
553
#
554
554
style=unknown-token
555
- if [[ $this_word == * ' :start: ' * ]]; then
555
+ if [[ $this_word == * ' s ' * ]]; then
556
556
in_array_assignment=false
557
557
if [[ $arg == ' noglob' ]]; then
558
558
highlight_glob=false
@@ -596,7 +596,7 @@ _zsh_highlight_main_highlighter_highlight_list()
596
596
#
597
597
# We use the (Z+c+) flag so the entire comment is presented as one token in $arg.
598
598
if [[ $zsyh_user_options [interactivecomments] == on && $arg [1] == $histchars [3] ]]; then
599
- if [[ $this_word == * (' :regular: ' | ' :start: ' )* ]]; then
599
+ if [[ $this_word == * (' r ' | ' s ' )* ]]; then
600
600
style=comment
601
601
else
602
602
style=unknown-token # prematurely terminated
@@ -607,7 +607,7 @@ _zsh_highlight_main_highlighter_highlight_list()
607
607
continue
608
608
fi
609
609
610
- if [[ $this_word == * ' :start: ' * ]] && ! (( in_redirection )) ; then
610
+ if [[ $this_word == * ' s ' * ]] && ! (( in_redirection )) ; then
611
611
# Expand aliases.
612
612
# An alias is ineligible for expansion while it's being expanded (see #652/#653).
613
613
_zsh_highlight_main__type " $arg " " $(( ! ${+seen_alias[$arg]} )) "
@@ -690,7 +690,7 @@ _zsh_highlight_main_highlighter_highlight_list()
690
690
691
691
# Parse the sudo command line
692
692
if (( ! in_redirection )) ; then
693
- if [[ $this_word == * ' :sudo_opt: ' * ]]; then
693
+ if [[ $this_word == * ' o ' * ]]; then
694
694
if [[ -n $flags_with_argument ]] &&
695
695
{
696
696
# Trenary
@@ -700,8 +700,8 @@ _zsh_highlight_main_highlighter_highlight_list()
700
700
fi
701
701
} then
702
702
# Flag that requires an argument
703
- this_word= ${this_word//: start : / }
704
- next_word= ' :sudo_arg: '
703
+ this_word= ${this_word// s / }
704
+ next_word= ' a '
705
705
elif [[ -n $flags_with_argument ]] &&
706
706
{
707
707
# Trenary
@@ -711,15 +711,15 @@ _zsh_highlight_main_highlighter_highlight_list()
711
711
fi
712
712
} then
713
713
# Argument attached in the same word
714
- this_word= ${this_word//: start : / }
715
- next_word+= ' :start: '
716
- next_word+= ' :sudo_opt: '
714
+ this_word= ${this_word// s / }
715
+ next_word+= ' s '
716
+ next_word+= ' o '
717
717
elif [[ -n $flags_sans_argument ]] &&
718
718
[[ $arg == ' -' [$flags_sans_argument ]# ]]; then
719
719
# Flag that requires no argument
720
- this_word= ' :sudo_opt: '
721
- next_word+= ' :start: '
722
- next_word+= ' :sudo_opt: '
720
+ this_word= ' o '
721
+ next_word+= ' s '
722
+ next_word+= ' o '
723
723
elif [[ -n $flags_solo ]] &&
724
724
{
725
725
# Trenary
@@ -729,8 +729,8 @@ _zsh_highlight_main_highlighter_highlight_list()
729
729
fi
730
730
} then
731
731
# Solo flags
732
- this_word= ' :sudo_opt: '
733
- next_word= ' :regular: ' # no :start: , nor :sudo_opt: since we don't know whether the solo flag takes an argument or not
732
+ this_word= ' o '
733
+ next_word= ' r ' # no 's' , nor 'o' since we don't know whether the solo flag takes an argument or not
734
734
elif [[ $arg == ' -' * ]]; then
735
735
# Unknown flag. We don't know whether it takes an argument or not,
736
736
# so modify $next_word as we do for flags that require no argument.
@@ -739,18 +739,18 @@ _zsh_highlight_main_highlighter_highlight_list()
739
739
# argument we'll highlight the command word correctly if the argument
740
740
# was given in the same shell word as the flag (as in '-uphy1729' or
741
741
# '--user=phy1729' without spaces).
742
- this_word= ' :sudo_opt: '
743
- next_word+= ' :start: '
744
- next_word+= ' :sudo_opt: '
742
+ this_word= ' o '
743
+ next_word+= ' s '
744
+ next_word+= ' o '
745
745
else
746
746
# Not an option flag; nothing to do. (If the command line is
747
- # syntactically valid, ${this_word//:sudo_opt: /} should be
747
+ # syntactically valid, ${this_word//o /} should be
748
748
# non-empty now.)
749
- this_word= ${this_word//: sudo_opt : / }
749
+ this_word= ${this_word// o / }
750
750
fi
751
- elif [[ $this_word == * ' :sudo_arg: ' * ]]; then
752
- next_word+= ' :sudo_opt: '
753
- next_word+= ' :start: '
751
+ elif [[ $this_word == * ' a ' * ]]; then
752
+ next_word+= ' o '
753
+ next_word+= ' s '
754
754
fi
755
755
fi
756
756
@@ -773,11 +773,11 @@ _zsh_highlight_main_highlighter_highlight_list()
773
773
# Other command separators aren't allowed.
774
774
(* ) style=unknown-token;;
775
775
esac
776
- elif [[ $this_word == * ' :regular: ' * ]]; then
776
+ elif [[ $this_word == * ' r ' * ]]; then
777
777
style=commandseparator
778
- elif [[ $this_word == * ' :start: ' * ]] && [[ $arg == $' \n ' ]]; then
778
+ elif [[ $this_word == * ' s ' * ]] && [[ $arg == $' \n ' ]]; then
779
779
style=commandseparator
780
- elif [[ $this_word == * ' :start: ' * ]] && [[ $arg == ' ;' ]] && (( in_alias )) ; then
780
+ elif [[ $this_word == * ' s ' * ]] && [[ $arg == ' ;' ]] && (( in_alias )) ; then
781
781
style=commandseparator
782
782
else
783
783
# Empty commands (semicolon follows nothing) are valid syntax.
@@ -794,26 +794,26 @@ _zsh_highlight_main_highlighter_highlight_list()
794
794
# Second, determine the style of next_word.
795
795
if [[ $arg == $' \n ' ]] && $in_array_assignment ; then
796
796
# literal newline inside an array assignment
797
- next_word=' :regular: '
797
+ next_word=' r '
798
798
elif [[ $arg == ' ;' ]] && $in_array_assignment ; then
799
799
# literal semicolon inside an array assignment
800
- next_word=' :regular: '
800
+ next_word=' r '
801
801
else
802
- next_word=' :start: '
802
+ next_word=' s '
803
803
highlight_glob=true
804
804
saw_assignment=false
805
805
if [[ $arg != ' |' && $arg != ' |&' ]]; then
806
- next_word+=' :start_of_pipeline: '
806
+ next_word+=' p '
807
807
fi
808
808
fi
809
809
810
- elif ! (( in_redirection)) && [[ $this_word == * ' :always: ' * && $arg == ' always' ]]; then
810
+ elif ! (( in_redirection)) && [[ $this_word == * ' w ' * && $arg == ' always' ]]; then
811
811
# try-always construct
812
812
style=reserved-word # de facto a reserved word, although not de jure
813
813
highlight_glob=true
814
814
saw_assignment=false
815
- next_word=' :start::start_of_pipeline: ' # only left brace is allowed, apparently
816
- elif ! (( in_redirection)) && [[ $this_word == * ' :start: ' * ]]; then # $arg is the command word
815
+ next_word=' sp ' # only left brace is allowed, apparently
816
+ elif ! (( in_redirection)) && [[ $this_word == * ' s ' * ]]; then # $arg is the command word
817
817
if (( ${+_zsh_highlight_main__precommand_options[$arg]} )) && _zsh_highlight_main__is_runnable $arg ; then
818
818
style=precommand
819
819
() {
@@ -822,12 +822,12 @@ _zsh_highlight_main_highlighter_highlight_list()
822
822
flags_sans_argument=$2
823
823
flags_solo=$3
824
824
}
825
- next_word=${next_word//: regular : / }
826
- next_word+=' :sudo_opt: '
827
- next_word+=' :start: '
825
+ next_word=${next_word// r / }
826
+ next_word+=' o '
827
+ next_word+=' s '
828
828
if [[ $arg == ' exec' ]]; then
829
829
# To allow "exec 2>&1;" where there's no command word
830
- next_word+=' :regular: '
830
+ next_word+=' r '
831
831
fi
832
832
else
833
833
case $res in
@@ -836,8 +836,8 @@ _zsh_highlight_main_highlighter_highlight_list()
836
836
# Match braces and handle special cases.
837
837
case $arg in
838
838
(time|nocorrect)
839
- next_word=${next_word//: regular : / }
840
- next_word+=' :start: '
839
+ next_word=${next_word// r / }
840
+ next_word+=' s '
841
841
;;
842
842
($' \x7b ' )
843
843
braces_stack=' Y' " $braces_stack "
@@ -846,7 +846,7 @@ _zsh_highlight_main_highlighter_highlight_list()
846
846
# We're at command word, so no need to check right_brace_is_recognised_everywhere
847
847
_zsh_highlight_main__stack_pop ' Y' reserved-word
848
848
if [[ $style == reserved-word ]]; then
849
- next_word+=' :always: '
849
+ next_word+=' w '
850
850
fi
851
851
;;
852
852
($' \x5b\x5b ' )
@@ -897,10 +897,10 @@ _zsh_highlight_main_highlighter_highlight_list()
897
897
# or a command separator (`repeat 2; ls` or `repeat 2; do ls; done`).
898
898
#
899
899
# The repeat-count word will be handled like a redirection target.
900
- this_word=' :start::regular: '
900
+ this_word=' sr '
901
901
;;
902
902
(' !' )
903
- if [[ $this_word != * ' :start_of_pipeline: ' * ]]; then
903
+ if [[ $this_word != * ' p ' * ]]; then
904
904
style=unknown-token
905
905
else
906
906
# '!' reserved word at start of pipeline; style already set above
@@ -935,9 +935,9 @@ _zsh_highlight_main_highlighter_highlight_list()
935
935
# assignment to a scalar parameter.
936
936
# (For array assignments, the command doesn't start until the ")" token.)
937
937
#
938
- # Discard :start_of_pipeline: , if present, as '!' is not valid
938
+ # Discard 'p' , if present, as '!' is not valid
939
939
# after assignments.
940
- next_word+=' :start: '
940
+ next_word+=' s '
941
941
if (( i <= $# arg )) ; then
942
942
() {
943
943
local highlight_glob=false
@@ -1003,7 +1003,7 @@ _zsh_highlight_main_highlighter_highlight_list()
1003
1003
esac
1004
1004
fi
1005
1005
if [[ -n ${(M)_zsh_highlight_main__tokens_control_flow:# " $arg " } ]]; then
1006
- next_word=' :start::start_of_pipeline: '
1006
+ next_word=' sp '
1007
1007
fi
1008
1008
elif _zsh_highlight_main__is_global_alias " $arg " ; then # $arg is a global alias that isn't in command position
1009
1009
style=global-alias
@@ -1015,7 +1015,7 @@ _zsh_highlight_main_highlighter_highlight_list()
1015
1015
_zsh_highlight_main_add_region_highlight $start_pos $end_pos assign
1016
1016
_zsh_highlight_main_add_region_highlight $start_pos $end_pos reserved-word
1017
1017
in_array_assignment=false
1018
- next_word+=' :start: '
1018
+ next_word+=' s '
1019
1019
continue
1020
1020
elif (( in_redirection )) ; then
1021
1021
style=unknown-token
@@ -1035,7 +1035,7 @@ _zsh_highlight_main_highlighter_highlight_list()
1035
1035
else
1036
1036
if [[ $zsyh_user_options [multifuncdef] == on ]] || false # TODO: or if the previous word was a command word
1037
1037
then
1038
- next_word+=' :start::start_of_pipeline: '
1038
+ next_word+=' sp '
1039
1039
fi
1040
1040
style=reserved-word
1041
1041
fi
@@ -1051,7 +1051,7 @@ _zsh_highlight_main_highlighter_highlight_list()
1051
1051
else
1052
1052
_zsh_highlight_main__stack_pop ' Y' reserved-word
1053
1053
if [[ $style == reserved-word ]]; then
1054
- next_word+=' :always: '
1054
+ next_word+=' w '
1055
1055
fi
1056
1056
fi
1057
1057
elif [[ $arg [0,1] = $histchars [0,1] ]] && (( $# arg[0 , 2 ] == 2 )) ; then
@@ -1885,4 +1885,4 @@ typeset -gA _zsh_highlight_main__fallback_of=(
1885
1885
command-substitution{-delimiter,}
1886
1886
process-substitution{-delimiter,}
1887
1887
back-quoted-argument{-delimiter,}
1888
- )
1888
+ )
0 commit comments