github gsamokovarov/jump v0.22.0
0.22.0

latest releases: v0.51.0, v0.50.0, v0.41.0...
5 years ago

Ahoy, 👋

This release comes with a few minor changes:

  1. 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! 😅

  2. 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

Don't miss a new jump release

NewReleases is sending notifications on new releases.