summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/dirhistory/README.md
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/dirhistory/README.md
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/dirhistory/README.md')
-rw-r--r--zsh/oh-my-zsh/plugins/dirhistory/README.md62
1 files changed, 0 insertions, 62 deletions
diff --git a/zsh/oh-my-zsh/plugins/dirhistory/README.md b/zsh/oh-my-zsh/plugins/dirhistory/README.md
deleted file mode 100644
index ede9b54..0000000
--- a/zsh/oh-my-zsh/plugins/dirhistory/README.md
+++ /dev/null
@@ -1,62 +0,0 @@
-# Dirhistory plugin
-
-This plugin adds keyboard shortcuts for navigating directory history and hierarchy.
-
-To use it, add `dirhistory` to the plugins array in your zshrc file:
-
-```zsh
-plugins=(... dirhistory)
-```
-
-## Keyboard Shortcuts
-
-| Shortcut | Description |
-|-----------------------------------|-----------------------------------------------------------|
-| <kbd>Alt</kbd> + <kbd>Left</kbd> | Go to previous directory |
-| <kbd>Alt</kbd> + <kbd>Right</kbd> | Go to next directory |
-| <kbd>Alt</kbd> + <kbd>Up</kbd> | Move into the parent directory |
-| <kbd>Alt</kbd> + <kbd>Down</kbd> | Move into the first child directory by alphabetical order |
-
-**For macOS: use the Option key (<kbd>⌥</kbd>) instead of <kbd>Alt</kbd>**.
-
-> NOTE: some terminals might override the <kbd>Alt</kbd> + Arrows key bindings (e.g. Windows Terminal).
-> If these don't work check your terminal settings and change them to a different keyboard shortcut.
-
-## Usage
-
-This plugin allows you to navigate the history of previous working directories using <kbd>Alt</kbd> + <kbd>Left</kbd>
-and <kbd>Alt</kbd> + <kbd>Right</kbd>. <kbd>Alt</kbd> + <kbd>Left</kbd> moves to past directories, and
-<kbd>Alt</kbd> + <kbd>Right</kbd> goes back to recent directories.
-
-**NOTE: the maximum directory history size is 30.**
-
-You can also navigate **directory hierarchies** using <kbd>Alt</kbd> + <kbd>Up</kbd> and <kbd>Alt</kbd> + <kbd>Down</kbd>.
-<kbd>Alt</kbd> + <kbd>Up</kbd> moves to the parent directory, while <kbd>Alt</kbd> + <kbd>Down</kbd> moves into the first
-child directory found in alphabetical order (useful to navigate long empty directories, e.g. Java packages).
-
-For example, if the shell was started, and the following commands were entered:
-
-```shell
-cd ~
-cd /usr
-cd share
-cd doc
-```
-
-the directory stack (`dirs -v`) would look like this:
-
-```console
-$ dirs -v
-0 /usr/share/doc
-1 /usr/share
-2 /usr
-3 ~
-```
-
-then entering <kbd>Alt</kbd> + <kbd>Left</kbd> at the prompt would change directory from `/usr/share/doc` to `/usr/share`,
-then if pressed again to `/usr`, then `~`. If <kbd>Alt</kbd> + <kbd>Right</kbd> were pressed the directory would be changed
-to `/usr` again.
-
-After that, <kbd>Alt</kbd> + <kbd>Down</kbd> will probably go to `/usr/bin` if `bin` is the first directory in alphabetical
-order (depends on your `/usr` folder structure). <kbd>Alt</kbd> + <kbd>Up</kbd> will return to `/usr`, and once more will get
-you to the root folder (`/`).