rprompt 0.0.3 → 0.0.4
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.
- data/README.md +3 -1
- data/bin/rprompt +1 -1
- data/bin/rpromptconf +1 -1
- data/lib/rprompt/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# rprompt
|
2
|
+
[](http://badge.fury.io/rb/rprompt)
|
2
3
|
|
3
4
|
Pimp your prompt :-)
|
4
5
|
|
@@ -64,9 +65,10 @@ To make the magic happen:
|
|
64
65
|
* if you're setting PS1 already, comment it while you're using rprompt
|
65
66
|
* paste the following lines between '---' at the end of the file
|
66
67
|
|
68
|
+
Tested on MacOS 10.8.4
|
67
69
|
---
|
68
70
|
# Setting terminal promt with rprompt gem
|
69
|
-
PROMPT_COMMAND="
|
71
|
+
PROMPT_COMMAND="PS1=\"\$(rprompt)\";"
|
70
72
|
---
|
71
73
|
|
72
74
|
* quit your terminal and re-open it for the change to take effect.
|
data/bin/rprompt
CHANGED
data/bin/rpromptconf
CHANGED
@@ -12,7 +12,7 @@ To make the magic happen:
|
|
12
12
|
|
13
13
|
---
|
14
14
|
# Setting terminal promt with rprompt gem
|
15
|
-
PROMPT_COMMAND="
|
15
|
+
PROMPT_COMMAND="PS1=\\"\\$(rprompt)\\";"
|
16
16
|
---
|
17
17
|
|
18
18
|
4/ quit your terminal and re-open it for the change to take effect.
|
data/lib/rprompt/version.rb
CHANGED