1. 31 Dec, 2018 1 commit
    • Alexander Huynh's avatar
      Provide even spacing between marks (#7456) · 3c3766fd
      Alexander Huynh authored
      Before, when typing the `marks` command, longer mark keys would cause
      the tabs to spill over to the next tab stop, like so:
      
          rc      -> /home/ahlex/.rc
          repos   -> /home/ahlex/repos
          a-longer-string         -> /tmp
      
      Implement better key display by running through all of the marks twice,
      once to get the longest key length, and the second time to format
      everything according to that length:
      
                       rc -> /home/ahlex/.rc
                    repos -> /home/ahlex/repos
          a-longer-string -> /tmp
      3c3766fd
  2. 05 Oct, 2018 1 commit
  3. 03 Oct, 2018 2 commits
  4. 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
  5. 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
  6. 11 Jun, 2015 1 commit
  7. 10 Feb, 2015 1 commit
  8. 06 Nov, 2014 1 commit
  9. 28 Jun, 2014 1 commit
  10. 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
  11. 06 Sep, 2013 4 commits
  12. 05 Sep, 2013 2 commits
  13. 18 Aug, 2013 1 commit
  14. 15 Aug, 2013 1 commit