Search Results

1
vote

Bash autocompletion in Emacs shell-mode

Like Matli said, it is not an easy task, since bash is started with --noediting and TAB is bound to comint-dynamic-complete. One could possibly rebind TAB to self-insert-command in shell-co …
-1
votes

Tricky brace expansion in shell

Taking inspiration from the answers above: $ TEST=quick,man,strong $ touch $(eval echo {$TEST}ly) …