public
Description: This package contains some simple scripts for bash completion.
Clone URL: git://github.com/calas/bash-completion-extras.git
Change bug in cheat autocompletion that slow the bash loading. Updated 
README.rdoc
calas (author)
Thu Jul 03 04:57:53 -0700 2008
commit  35ecb502dff0d72f67cd82b9e626e44ed2ea5988
tree    13ffc96040a3251837c0d51f04fb27dc01f47885
parent  fcc816b96359637c0e6a30398f73a05a2ff7e7ff
...
1
2
3
4
 
 
 
 
 
 
 
5
6
7
...
24
25
26
27
 
 
 
28
 
 
 
29
...
1
2
 
 
3
4
5
6
7
8
9
10
11
12
...
29
30
31
 
32
33
34
35
36
37
38
39
0
@@ -1,7 +1,12 @@
0
 == Bash Completion Extras
0
 
0
-This package contains some simple scripts for bash completion. At the
0
-moment just gem auto-completion is a available.
0
+This package contains some simple scripts for bash completion.
0
+
0
+At the moment, auto-completion is a available for:
0
+
0
+* gem
0
+* cheat
0
+* git
0
 
0
 == Installation
0
 
0
@@ -24,5 +29,10 @@ or
0
 
0
   rake install force=true
0
 
0
-to override existing files.
0
+to override existing symbolic links.
0
+
0
+== Support
0
 
0
+This is completely unsupported, I put it here just to share it. Use it
0
+at your own risk. But if you enhance it in some way I would appreciate
0
+if you share it with me, thought this is not mandatory.
0
\ No newline at end of file
...
1
2
 
3
4
5
...
 
1
2
3
4
5
0
@@ -1,5 +1,5 @@
0
-sheets=`cheat sheets | grep '^ '`
0
 function complete_cheat {
0
+ sheets=`cheat sheets | grep '^ '`
0
     COMPREPLY=()
0
     if [ $COMP_CWORD = 1 ]; then
0
   COMPREPLY=(`compgen -W "$sheets" -- $2`)

Comments

    No one has commented yet.