Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[PATCH?] Re: Autocorrect for commands with a hyphen (dash) in the name



[Moving to -workers from -users]

On Tue, May 19, 2020 at 2:25 PM Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx> wrote:
>
> So, the following?  Or should this also have the equivalent of
>
>             if (*w == Tilde || *w == Equals || *w == String)
>                 *x = *w;
>
> like zle_tricky.c?

Any comment on this?

> diff --git a/Src/lex.c b/Src/lex.c
> index a541def..615da5a 100644
> --- a/Src/lex.c
> +++ b/Src/lex.c
> @@ -1868,8 +1868,12 @@ exalias(void)
>      hwend();
>      if (interact && isset(SHINSTDIN) && !strin && incasepat <= 0 &&
>         tok == STRING && !nocorrect && !(inbufflags & INP_ALIAS) &&
> -       (isset(CORRECTALL) || (isset(CORRECT) && incmdpos)))
> -       spckword(&tokstr, 1, incmdpos, 1);
> +       (isset(CORRECTALL) || (isset(CORRECT) && incmdpos))) {
> +       char *x = dupstring(tokstr);
> +       untokenize(x);
> +       spckword(&x, 1, incmdpos, 1);
> +       tokenize(tokstr = x);
> +    }
>
>      if (!tokstr) {
>         zshlextext = tokstrings[tok];



Messages sorted by: Reverse Date, Date, Thread, Author