This website works better with JavaScript
Home
Explore
Help
Sign In
HonorLee
/
ohmyzsh
mirror of
https://github.com/ohmyzsh/ohmyzsh.git
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
Added history plugin
Roey Darwish Dror
13 years ago
parent
e8d582aba9
commit
8ba97c3644
1 changed files
with
8 additions
and
0 deletions
Split View
Show Diff Stats
8
0
plugins/history/history.plugin.zsh
+ 8
- 0
plugins/history/history.plugin.zsh
View File
@@ -0,0 +1,8 @@
+alias h='history'
+
+function hs
+{
+ history | grep $*
+}
+
+alias hsi='hs -i'