szermatt / emacs-bash-completion

Add programmable bash completion to Emacs shell-mode
GNU General Public License v2.0
279 stars 33 forks source link

Making sure that line editing is turned off #42

Closed ghost closed 4 years ago

ghost commented 4 years ago

If either set -o emacs or set -o vi is in the user's .bashrc the completion process fails to start. That is expected (this is why bash is run with --noediting). This change takes into account that a user might have explicitly turned it on in their configuration.

szermatt commented 4 years ago

Thank you for the fix!