You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make alphabetical sorting the default for backward compatibility
- Changed default from 'recency' to 'alphabetical' to preserve existing behavior
- Users can opt-in to recency sorting by setting @fzf-url-sort-by 'recency'
- Updated documentation to reflect alphabetical as default
- Maintains full backward compatibility with existing configurations
🤖 Generated with [opencode](https://opencode.ai)
Co-Authored-By: opencode <[email protected]>
You can control how URLs are sorted by setting `@fzf-url-sort-by`:
60
60
61
61
```tmux
62
-
# Sort URLs by recency (default) - most recent URLs closest to search bar
63
-
set -g @fzf-url-sort-by 'recency'
64
-
65
-
# Sort URLs alphabetically - original behavior
62
+
# Sort URLs alphabetically (default) - original behavior
66
63
set -g @fzf-url-sort-by 'alphabetical'
64
+
65
+
# Sort URLs by recency - most recent URLs closest to search bar
66
+
set -g @fzf-url-sort-by 'recency'
67
67
```
68
68
69
69
**Smart Layout Detection**: When using recency sorting, the plugin automatically detects your fzf layout and adjusts the sort order to keep the most recent URLs closest to the search bar:
0 commit comments