Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dircycle mode: cycle directory stack with Ctrl+Shift+Left/Right #252

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions modules/dircycle/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Overview

`dircycle` provides you with a way to quickly cycle through your dir stack without destroying the currently entered command.

# Usage

* Ctrl+Shift+Left: rotates the directory stack one step backward
* Ctrl+Shift+Right: rotates the directory stack one step forward
13 changes: 13 additions & 0 deletions modules/dircycle/init.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
##
# dircycle plugin: enables cycling through the directory
# stack using Ctrl+Shift+Left/Right

alias dircycle-left="pushd -q +1"
alias dircycle-right="pushd -q -0"

eval "insert-cycledleft () { zle push-line; LBUFFER='dircycle-left'; zle accept-line }"
zle -N insert-cycledleft
bindkey "\e[1;6D" insert-cycledleft
eval "insert-cycledright () { zle push-line; LBUFFER='dircycle-right'; zle accept-line }"
zle -N insert-cycledright
bindkey "\e[1;6C" insert-cycledright