jump v0.22.0 Release Notes

Release Date: 2018-11-22 // over 5 years ago
  • ๐Ÿฑ Ahoy, ๐Ÿ‘‹

    ๐Ÿš€ This release comes with a few minor changes:

    ๐Ÿš… The exact match mechanism is now triggered only on search terms of 5 or more characters. This is so we don't end up in common development project directories like app, lib, src, test, main, java and so on. If you have a project called application, for example, j app will no longer end up in a common rails_project/app directory. I'm not telling you to use Rails (you should), but it's just an example! ๐Ÿ˜…

    You can use * or ** in a search term to match arbitrary deep nested directories. For example, you can now implement autojump's jc like:

    bash & zsh

    jc() { j "$(basename $PWD)/\*\*/$@"}
    

    fish

    function jc j "(basename $PWD)/\*\*/$argv"end