Releases: mattiaslundberg/fastjump
v0.7.0
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
- Various improvements for code readability
- Improve handling of some error conditions
v0.6.2
Fix crash when folder used for previous visits doesn't exist.
v0.6.1
Automated releasing of new versions, no changes in application code.
v0.6.0
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
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
- Faster matching by using multithreaded checking
- Various other performance and best practices fixes
v0.3.0
Improve matching in some cases
v0.2.0
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
Initial release providing a very basic interface and functionallity.