Re: [Bash-completion-devel] [Bash-completion-commits] [SCM] bash-completion branch, master, updated. 0f2656669fbdf627a3ddf11bdb72e3ec9cef68fd

2009-03-31 Thread David Paleino
On Mon, 30 Mar 2009 23:50:53 +0300, Ville Skyttä wrote: On Monday 30 March 2009, Guillaume Rousse wrote: Guillaume Rousse a écrit : The following commit has been merged in the master branch: commit 0924d059c6c845069b10482882c821088ccaeefa Merge:

Re: [Bash-completion-devel] [Bash-completion-commits] [SCM] bash-completion branch, master, updated. 0f2656669fbdf627a3ddf11bdb72e3ec9cef68fd

2009-03-31 Thread Ville Skyttä
On Tuesday 31 March 2009, David Paleino wrote: On Tue, 31 Mar 2009 20:10:17 +0300, Ville Skyttä wrote: On Tuesday 31 March 2009, David Paleino wrote: But git log is a mess, and cherry-picking isn't easy. What are you guys using? Plain git CLI. Eh, I meant which git command,

Re: [Bash-completion-devel] [Bash-completion-commits] [SCM] bash-completion branch, master, updated. 0f2656669fbdf627a3ddf11bdb72e3ec9cef68fd

2009-03-31 Thread David Paleino
On Tue, 31 Mar 2009 22:26:41 +0300, Ville Skyttä wrote: On Tuesday 31 March 2009, David Paleino wrote: Ah. Well, I read somewhere that rebasing, when working on shared, published repsoitories, is *evil*. OTOH, I can't recall why it's bad It's bad if done *in* a published repository

Re: [Bash-completion-devel] [Bash-completion-commits] [SCM] bash-completion branch, frozen/1.0, updated. 79ef58feca717e6872f4696fd7e7db8f7dc57d0b

2009-03-31 Thread David Paleino
On Tue, 31 Mar 2009 20:13:33 +0300, Ville Skyttä wrote: On Tuesday 31 March 2009, David Paleino wrote: diff --git a/CHANGES b/CHANGES index 3f31302..d7365ff 100644 --- a/CHANGES +++ b/CHANGES @@ -141,6 +141,12 @@ bash-completion (1.0) * Remove obsolete --buildarch and --buildos

Re: [Bash-completion-devel] bash 2.x array initialization

2009-03-31 Thread Ville Skyttä
On Tuesday 31 March 2009, David Paleino wrote: On Tue, 31 Mar 2009 20:36:43 +0300, Ville Skyttä wrote: Wiki updated: http://wiki.debian.org/Teams/BashCompletion/Git Thanks. From now on: debian/changelog is no more used as upstream changelog (CHANGES will be), and no one is supposed to

[Bash-completion-devel] make filename completion

2009-03-31 Thread Ville Skyttä
Hi, The completion of make and friends currently has: complete -f -F _make $filenames make gmake gnumake pmake The -f seems to break for example make -C TAB so that it completes on dirs+files instead of just dirs. Simply changing the line to complete -F _make $filenames make gmake