0.22.0
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 calledapplication
, for example,j app
will no longer end up in a commonrails_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'sjc
like:bash & zsh
jc() { j "$(basename $PWD)/**/$@" }
fish
function jc j "(basename $PWD)/**/$argv" end