- 01 Sep, 2018 1 commit
-
-
Ross Lafferty authored
Using the `jump` plugin, using the `marks` command will yield this output: ``` $ marks desktop marks:printf:5: bad option: -> dotfiles marks:printf:5: bad option: -> home marks:printf:5: bad option: -> ``` the `marks` function uses `printf` with `->` and I believe `-` is used by `printf` for left-justification. changing this to `-- "->"` seems to render the appropriate output. ``` desktop -> /Users/uname/Desktop dotfiles -> /Users/uname/.dotfiles home -> /Users/uname ```
-
- 07 Oct, 2016 1 commit
-
-
diego authored
This allows for the user to combine the jump command with something else. In my example cd and jump are now combined like this: ```bash jumpcd() { jump $1 > /dev/null || cd $1 } alias cd="jumpcd" ```
-
- 11 Jun, 2015 1 commit
-
-
Octavian Neamtu authored
-
- 10 Feb, 2015 1 commit
-
-
Marc Cornellà authored
-
- 06 Nov, 2014 1 commit
-
-
Marc Cornellà authored
This avoids spawning additional processes as $PWD **always** contains the current working directory.
-
- 28 Jun, 2014 1 commit
-
-
Jannik Zschiesche authored
This change fixes the autocompletion for marks which contain numbers or dots. Fixes #2578 `\d` in sed regular expressions doesn't work (see http://stackoverflow.com/questions/14671293/why-does-d-doesnt-work-in-regular-expression-in-sed)
-
- 18 Sep, 2013 1 commit
-
-
Thomas Hipp authored
Autocompletion fails if there's only one mark, since the ls command will not display the parent directory with the trailing colon. Handling the single mark case separately and validating the symlink explicitly, resolves the issue.
-
- 06 Sep, 2013 4 commits
-
-
Jeroen Janssens authored
-
Jeroen Janssens authored
-
Jeroen Janssens authored
Change marks function and remove 'function' keyword as suggested by pielgrzym in https://github.com/robbyrussell/oh-my-zsh/pull/2045#issuecomment-22820224
-
Jeroen Janssens authored
Add _completemarks function as suggested by pielgrzym in https://github.com/robbyrussell/oh-my-zsh/pull/2045#issuecomment-22826540
-
- 05 Sep, 2013 2 commits
-
-
Justin Aiken authored
-
Justin Aiken authored
-
- 18 Aug, 2013 1 commit
-
-
Jeroen Janssens authored
-
- 15 Aug, 2013 1 commit
-
-
Jeroen Janssens authored
-