Skip to content

Releases: pure-fish/pure

v2.3.0: Option to disable Git info

03 Nov 17:54
Compare
Choose a tag to compare

🛠 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

03 Nov 17:16
Compare
Choose a tag to compare

🏋️ Performance

  • Speed up Git dirty for bigger repositories

⬇️ Installation

fisher add rafaelrinaldi/pure

👏 Thanks

v2.2.0: Support dynamic content for right prompt

03 Nov 15:46
Compare
Choose a tag to compare

♻️ 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

11 Jul 08:29
Compare
Choose a tag to compare

🐛 Fix

  • Fix Native Vi Mode Does Not Display #181

⬇️ Installation

fisher add rafaelrinaldi/pure

👏 Thanks

v2.1.7: Support cloning empty repo

05 Jul 08:28
Compare
Choose a tag to compare

🐛 Fix

  • prevent pure_prompt_git_pending_commits to fail when cloning an empty repository:
    • fix: print warns when its an empty repo #180

⬇️ Installation

fisher add rafaelrinaldi/pure

👏 Thanks

v2.1.6: Handle double dash when measuring string length

01 Jul 08:27
Compare
Choose a tag to compare

🐛 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)

11 Apr 19:46
Compare
Choose a tag to compare

🐛 Fix

  • add an empty fish_mode_prompt.fish and matching function to prevent iTerm2 to fail (see #116)

⬇️ Installation

fisher add rafaelrinaldi/pure

v2.1.4: fix test for OMF install method

11 Apr 19:41
Compare
Choose a tag to compare

🐛 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

11 Apr 19:03
794db17
Compare
Choose a tag to compare

🪲 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

20 Mar 14:04
3424099
Compare
Choose a tag to compare

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.