summaryrefslogtreecommitdiff
path: root/plugins/dirhistory
AgeCommit message (Collapse)Author
2023-04-20fix(dirhistory): run properly if `ksh_arrays` is set (#11630)Erin Schlarb
2021-12-26fix(dirhistory): define key bindings for vi mode (#10450)Marc Cornellà
Fixes #10450
2021-12-16fix: declare variables as global when using `typeset`Marc Cornellà
Fixes fb86ec77
2021-12-14style: use `typeset` for dynamic variable namesMarc Cornellà
2021-11-16style(dirhistory): remove use of `eval` completelyMarc Cornellà
2021-11-11fix(dirhistory): fix unsafe eval bug in back and forward widgetsMarc Cornellà
The plugin unsafely processes directory paths in pop_past and pop_future. This commit fixes that.
2021-11-11fix(dirhistory): fix Up/Down key bindings for Terminal.appMarc Cornellà
Reference: https://github.com/ohmyzsh/ohmyzsh/commit/7f49494#commitcomment-60117011
2021-11-02feat(dirhistory): support urxvt terminal key binding (#8370)Michael Peick
Closes #8370
2021-11-02fix(dirhistory): fix ALT+Up/Down key bindings for Terminal.appMarc Cornellà
2021-11-02docs(dirhistory): document OPT key alternative for macOS and fix styleMarc Cornellà
Fixes #10350
2021-08-14docs(dirhistory): document keyboard shortcut conflict with Windows TerminalMarc Cornellà
Related: https://github.com/ohmyzsh/ohmyzsh/issues/8505#issuecomment-886241162
2021-05-28fix(dirhistory): fix ALT+Left/Right key bindings for iTerm2 (#9940)Marc Cornellà
2021-05-21feat(dirhistory): add ALT+UP/DOWN key bindings for iTerm2 (#8502)rhuitl
2021-04-01fix(dirhistory): make sure to call built-in zle widgets (#9771)Stéphane Caron
Without this patch, if the called zle widgets have been redefined this plugin might come into conflict. Related: #9770.
2020-03-11Clean up plugin READMEs and a few pluginsMarc Cornellà
- fasd - history - mercurial - pylint - repo - yii2
2019-11-19Use safer append to hook function arrays (#8406)Jacob Tomaw
Use add-zsh-hook to add functions to hooks. That way they won't be added again when doing `source ~/.zshrc` multiple times. Co-authored-by: Marc Cornellà <marc.cornella@live.com>
2018-10-06dirhistory: add README (#7239)MasterOfTheTiger
2018-05-13Add directory hierarchy navigation to dirhistory (#6756)Marc Cornellà
* New Feature: Navigate directory hierarchy using ALT-UP and ALT-DOWN. (mac keybindings not yet implemented) ALT-UP moves to higher hierarchy (cd ..) ALT-DOWN moves into the first directory found in alphabetical order
2018-05-13Fine-tune dirhistory plugin mappings for Mac (#6580)Giuseppe Landolfi
See https://github.com/robbyrussell/oh-my-zsh/pull/6533#issuecomment-360878060
2018-05-08Adhere to coding style outlined in wikiFrancisco Zuviría
2018-04-22 On branch fzuviria.plugin.dirhistory.new-feature.navigate-historyFrancisco Zuviría
Changes to be committed: modified: dirhistory/dirhistory.plugin.zsh New Feature: Navigate directory hierarchy using ALT-UP and ALT-DOWN. (mac keybindings not yet implemented) ALT-UP moves to higher hierarchy (cd ..) ALT-DOWN moves into the first directory found in alphabetical order
2018-01-22Add support for Mac to dirhistory plugin (#6533)Giuseppe Landolfi
Add shortcuts for mac keyboards as an alternative to alt+left abd alt+right: mac users can now use opt+left and opt+right.
2015-08-04style fixesxiao.fan
2015-08-03Don't clobber chpwdxiao
2014-11-06Change all pwd calls for $PWD variableMarc Cornellà
This avoids spawning additional processes as $PWD **always** contains the current working directory.
2014-03-03Added dirhistory plugin.Jeff Williams
This plugin navigates directory history using ALT-LEFT and ALT-RIGHT.