We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7fddc21 + 06a18b6 commit 5ea2458Copy full SHA for 5ea2458
ChangeLog.md
@@ -1,5 +1,11 @@
1
# Hike ChangeLog
2
3
+## Unreleased
4
+
5
+**Released: WiP**
6
7
+- The bookmark search command palette now sorts the bookmarks.
8
9
## v0.1.0
10
11
**Released: 2025-02-14**
src/hike/providers/bookmarks.py
@@ -28,7 +28,7 @@ def commands(self) -> CommandHits:
28
Yields:
29
The commands for the command palette.
30
"""
31
- for bookmark in self.bookmarks:
+ for bookmark in sorted(self.bookmarks):
32
yield CommandHit(
33
f"Visit {bookmark.title}",
34
f"{bookmark.location}",
0 commit comments