1. 05 Oct, 2018 1 commit
  2. 03 Oct, 2018 2 commits
  3. 01 Sep, 2018 1 commit
    • Ross Lafferty's avatar
      jump: fix printf path output (#7105) · 0853b74f
      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
      ```
      0853b74f
  4. 07 Oct, 2016 1 commit
    • diego's avatar
      Add non 0 exit code for missing jump targets (#5500) · d69f2850
      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"
      ```
      d69f2850
  5. 11 Jun, 2015 1 commit
  6. 10 Feb, 2015 1 commit
  7. 06 Nov, 2014 1 commit
  8. 28 Jun, 2014 1 commit
  9. 18 Sep, 2013 1 commit
    • Thomas Hipp's avatar
      jump plugin: fix autocompletion with single mark · 91b6a6b5
      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.
      91b6a6b5
  10. 06 Sep, 2013 4 commits
  11. 05 Sep, 2013 2 commits
  12. 18 Aug, 2013 1 commit
  13. 15 Aug, 2013 1 commit