GNU bug report logs -
#70198
M-x shell: deal with environment variables present when tab expanding
Previous Next
Full log
View this message in rfc822 format
> Cc: 70198 <at> debbugs.gnu.org
> Date: Wed, 10 Jul 2024 18:22:35 +0200
> From: Federico Tedin via "Bug reports for GNU Emacs,
> the Swiss army knife of text editors" <bug-gnu-emacs <at> gnu.org>
>
> + (save-match-data (not (string-match "[~/]" filename)))
> + (eq (match-beginning 0)
> + (save-excursion
> + ;; Go back to beginning of command
> + (shell-backward-command 1)
> + ;; Skip any potential environment variables
> + (shell--skip-environment-variables pt)
> + (point))))
> + (shell--command-completion-data))))
> +
> +(defun shell--skip-environment-variables (pt)
> + "Move forward up to PT through any present environment variables."
> + (while (re-search-forward "=" pt t)
> + (skip-syntax-forward "^ " pt)
> + (skip-syntax-forward " " pt)))
What happens if the command itself has embedded '='?
What happens if the '=' character is quoted?
I think a better idea might be first to try to find what is "the word
at point", and then complete only that word. WDYT?
This bug report was last modified 173 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.