Re: [Bash-completion-devel] Style proposals: case labels and [[ ]]

2009-11-20 Thread Freddy Vulto
On 11:31, Ville Skyttä wrote: On Thursday 05 November 2009, Ville Skyttä wrote: I'd like to propose two coding style guidelines: No comments? Silence means acceptance? +1 Another +1 to add the rationale to the documentation as well. ___

[Bash-completion-devel] Style proposals: case labels and [[ ]]

2009-11-04 Thread Ville Skyttä
Hello, I'd like to propose two coding style guidelines: 1) Avoid fancy globbing in case labels, just use traditional style when possible. For example, do --foo|--bar) instead of --@(foo|bar)). Rationale: the former is easier to read, often easier to grep, and doesn't confuse editors as bad