Browse Source

Added history plugin

Roey Darwish Dror 13 years ago
parent
commit
8ba97c3644
1 changed files with 8 additions and 0 deletions
  1. 8 0
      plugins/history/history.plugin.zsh

+ 8 - 0
plugins/history/history.plugin.zsh

@@ -0,0 +1,8 @@
+alias h='history'
+
+function hs
+{
+    history | grep $*
+}
+
+alias hsi='hs -i'