diff --git a/.github/demo.tape b/.github/demo.tape index 8dad6d2..13bd710 100644 --- a/.github/demo.tape +++ b/.github/demo.tape @@ -24,8 +24,8 @@ Type "vim server.py" Enter Sleep 3.5s -# ── 2. Fuzzy find files (Ctrl+p → type → select) ────────────────────────── -Ctrl+p +# ── 2. Fuzzy find files (,ff → type → select) ──────────────────────────── +Type ",ff" Sleep 1.5s Type "route" Sleep 2.5s diff --git a/CHANGELOG.md b/CHANGELOG.md index ee4f981..9b5e8b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,11 @@ ### Fixed +- `install.sh` interactive menu and QUICKSTART now show `,ff` (current + fuzzy-find binding) instead of the stale `Ctrl+p` left over from the + native-first cleanup; `.github/demo.tape` updated to match (the + binary GIF still shows `Ctrl+p` until someone regenerates it from a + fresh fixture) - README badge and `install.sh` recommend Vim 8.1+ instead of 8.0+ — the runtime conditionally relies on patches `8.1.0360` (diffopt) and `8.1.1517` (completeopt+=popup), so 8.0 users hit option errors diff --git a/QUICKSTART.md b/QUICKSTART.md index 0486976..5d014d6 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -45,7 +45,7 @@ Esc back to Normal ## Find things ``` -Ctrl+p fuzzy find file (git-aware) +,ff fuzzy find file (git-aware) ,rg ripgrep project ,b search buffers ,fh recent files diff --git a/install.sh b/install.sh index 0f4aa10..38da9a4 100755 --- a/install.sh +++ b/install.sh @@ -748,11 +748,11 @@ fi # ── System tools ───────────────────────────────────────────────────────────── if [[ $HAS_PKG_MGR -eq 1 ]]; then _I_RIPGREP=$_idx - _ITEMS+=("ripgrep|,rg / ,rG project-wide search · powers Ctrl+p preview|1") + _ITEMS+=("ripgrep|,rg / ,rG project-wide search · powers FZF preview|1") : $(( _idx++ )) _I_FZF=$_idx - _ITEMS+=("fzf|Ctrl+p fuzzy file search · ,b buffers · ,rt tag search|1") + _ITEMS+=("fzf|,ff fuzzy file search · ,b buffers · ,rt tag search|1") : $(( _idx++ )) _I_CTAGS=$_idx