jump 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.rdoc +41 -0
  2. data/VERSION +1 -1
  3. metadata +3 -3
data/README.rdoc CHANGED
@@ -35,6 +35,47 @@ Don't remember a command? Just type:
35
35
 
36
36
  $ jump --help
37
37
 
38
+ === Advanced completion
39
+
40
+ The tight integration between jump and bash_completion offers advanced completion features.
41
+
42
+ Suppose you added a bookmark called <i>rails-app</i> pointing to <i>/home/flavio/test/test_app</i>.
43
+ The folder contains the following files:
44
+ drwxr-xr-x 6 flavio users 4096 2010-08-10 10:38 app
45
+ drwxr-xr-x 5 flavio users 4096 2010-08-10 10:38 config
46
+ drwxr-xr-x 2 flavio users 4096 2010-08-10 10:38 db
47
+ drwxr-xr-x 2 flavio users 4096 2010-08-10 10:38 doc
48
+ drwxr-xr-x 3 flavio users 4096 2010-08-10 10:38 lib
49
+ drwxr-xr-x 2 flavio users 4096 2010-08-10 10:38 log
50
+ drwxr-xr-x 5 flavio users 4096 2010-08-10 10:38 public
51
+ -rw-r--r-- 1 flavio users 307 2010-08-10 10:38 Rakefile
52
+ -rw-r--r-- 1 flavio users 10011 2010-08-10 10:38 README
53
+ drwxr-xr-x 3 flavio users 4096 2010-08-10 10:38 script
54
+ drwxr-xr-x 7 flavio users 4096 2010-08-10 10:38 test
55
+ drwxr-xr-x 6 flavio users 4096 2010-08-10 10:38 tmp
56
+ drwxr-xr-x 3 flavio users 4096 2010-08-10 10:38 vendor
57
+
58
+ The following completions are available:
59
+ $ jump ra[TAB]
60
+ is expanded to:
61
+ $ jump rails-app
62
+
63
+ While
64
+ $ jump rails-app/[TAB]
65
+ allows to choose between the following completions:
66
+ rails-app/ rails-app/config rails-app/doc rails-app/log rails-app/script rails-app/tmp
67
+ rails-app/app rails-app/db rails-app/lib rails-app/public rails-app/test rails-app/vendor
68
+
69
+ Typing
70
+ $ jump rails-app/l[TAB]
71
+ suggests the following completions:
72
+ rails-app/lib rails-app/log
73
+
74
+ Hence
75
+ $ jump rails-app/lo[TAB]
76
+ is automatically expanded to
77
+ $ rails-app/log
78
+
38
79
  == Installation
39
80
 
40
81
  Jump is packaged as a gem:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jump
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 2
10
- version: 0.1.2
9
+ - 3
10
+ version: 0.1.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Flavio Castelli