Skip to content

Releases: mattiaslundberg/fastjump

v0.7.0

21 Mar 17:53
3f83429
Compare
Choose a tag to compare

Slightly changed behaviour for some matches, previously paths/patterns where reversed before matching, that is no longer the case. This changes the matches on paths where you match against a substring that occurs multiple times in the string. The good thing is that it gives a slight performance increase. Also bumps dependencies to latest version.

v0.6.3

18 Feb 18:01
49de4e7
Compare
Choose a tag to compare
  • Various improvements for code readability
  • Improve handling of some error conditions

v0.6.2

18 Jan 10:49
473a7d6
Compare
Choose a tag to compare

Fix crash when folder used for previous visits doesn't exist.

v0.6.1

19 Nov 07:29
Compare
Choose a tag to compare

Automated releasing of new versions, no changes in application code.

v0.6.0

09 Oct 17:42
Compare
Choose a tag to compare

This release adds support for caching previous location and prefer them in switching. This feature is opt-in and requires some configuration:

Add the following to your ~/.fastjump.yml:

# Saves a cache of previous visit counts to this file
previous_visits: /Users/me/.cache/fastjump_visits.yml

Add the following to your ~/.zshrc:

chpwd() {
    fastjump --save-visit $PWD
}

v0.5.0

06 Oct 16:09
Compare
Choose a tag to compare

Finally removed the need for scanning and added a new config file.

Breaking changes:

  • Create config file ~/.fastjump.yml with the following contents:
num_threads: <threads to use| default 3>
scan_root: <absolute path to start scanning for folder to switch to| default $HOME>
ignores:
 - node_modules
 - <other ignores from your ~/.fjignore>
  • Remove old configs ~/.fjignore (or at other locations) and ~/.fastjump

v0.4.0

30 Sep 07:56
Compare
Choose a tag to compare
  • Faster matching by using multithreaded checking
  • Various other performance and best practices fixes

v0.3.0

14 Sep 08:52
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

Improve matching in some cases

v0.2.0

08 Sep 09:13
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

Various fixes:

  • Make it possible to use default config (~ not expanded previously)
  • Handle ignored folders (recomended to add node_modules here since the folder will grow)
  • Multiple performance improvements

First release

07 Sep 11:04
Compare
Choose a tag to compare
First release Pre-release
Pre-release

Initial release providing a very basic interface and functionallity.