Re: COMP_POINT is not set correctly when there is non-ascii characters in the command line.

2012-04-05 Thread Chet Ramey
On 3/28/12 11:11 PM, Yichao Yu wrote: >> Pretty much everything else in bash uses characters, which may be bytes >> depending on the locale. >> >> Can someone who's more familiar with the bash completion package tell me >> whether or not it uses COMP_POINT at all? That's about that only thing >>

Re: Expanding aliases to full command before execution

2012-04-05 Thread Greg Wooledge
On Wed, Apr 04, 2012 at 04:08:04PM -0700, Linda Walsh wrote: > function ll { ls -l "$@"} Just for the record, a one-line function definition requires a ; before the closing curly brace. ll() { ls -l "$@";}