Releases: pure-fish/pure
v2.3.0: Option to disable Git info
🛠 New customizations
Disable Git info
Now you have an option to disable Git info in the prompt with the pure_enable_git
parameter. Just set it to false
in your config.fish
as usual if you have performance problems in big repositories.
This is a temporary workaround until we'll add Git async support in v3.0.0
.
⬇️ Installation
fisher add rafaelrinaldi/pure
👏 Thanks
v2.2.1: Speed up Git dirty
🏋️ Performance
- Speed up Git dirty for bigger repositories
⬇️ Installation
fisher add rafaelrinaldi/pure
👏 Thanks
v2.2.0: Support dynamic content for right prompt
♻️ Refactor: Support dynamic content for right prompt
The pure_right_prompt
parameter is removed in favor of native fish_right_prompt
mechanism.
⬇️ Installation
fisher add rafaelrinaldi/pure
⏫ Migrate Guide
Existing Config
If you already had a configured right prompt via pure_right_prompt
parameter, you can create the necessary new config using this command:
echo "function fish_right_prompt; echo \"$pure_right_prompt\"; end" > $__fish_config_dir/functions/fish_right_prompt.fish
New Config
Create fish_right_prompt.fish
in fish config functions/
directory manually and declare a fish_right_prompt
function inside.
v2.1.8: Fix Native Vi Mode Does Not Display
🐛 Fix
- Fix Native Vi Mode Does Not Display #181
⬇️ Installation
fisher add rafaelrinaldi/pure
👏 Thanks
v2.1.7: Support cloning empty repo
v2.1.6: Handle double dash when measuring string length
🐛 Fix
- prevent
_pure_string_width
to fail when containing double dash:- fix Handle virtualenvs that look like flags #177
⬇️ Installation
fisher add rafaelrinaldi/pure
v2.1.5: iTerm2 shell integration broken (MacOS)
🐛 Fix
- add an empty
fish_mode_prompt.fish
and matching function to preventiTerm2
to fail (see #116)
⬇️ Installation
fisher add rafaelrinaldi/pure
v2.1.4: fix test for OMF install method
🐛 Fix
- correct output for pure::backup_existing_theme
- link
pure
configuration and functions to$FISH_CONFIG_DIR/
during manual install - rename all methods in
tests/pure_tools_installer.test.fish
to follow our naming convention
⬇️ Installation
fisher add rafaelrinaldi/pure
v2.1.3: Fix manual install
🪲 Fix
- Replace
--parents
option by its POSIX equivalent-p
.
⬇️ Installation
fisher add rafaelrinaldi/pure
v2.1.2: Fix double print of first line on fresh terminals
Fixes 🐞
On some circumstances the first line of the prompt can be printed two times instead of one (see #151). This release fixes it.
Installation
fisher add rafaelrinaldi/pure
Thanks 👏
Thanks @pcr910303 for reporting the bug.