浏览代码

Add dircycle plugin: enables cycling through the directory stack

Rotem Yaari 13 年之前
父节点
当前提交
f8802bd612
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      plugins/dircycle/dircycle.plugin.zsh

+ 10 - 0
plugins/dircycle/dircycle.plugin.zsh

@@ -0,0 +1,10 @@
+##
+# dircycle plugin: enables cycling through the directory
+# stack using Ctrl+Shift+Left/Right
+
+eval "insert-cycledleft () { zle push-line; LBUFFER='pushd -q +1'; zle accept-line }"
+zle -N insert-cycledleft
+bindkey "\e[1;6D" insert-cycledleft
+eval "insert-cycledright () { zle push-line; LBUFFER='pushd -q -0'; zle accept-line }"
+zle -N insert-cycledright
+bindkey "\e[1;6C" insert-cycledright