We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af8812c + 1a01f8d commit a6d7d62Copy full SHA for a6d7d62
CHANGELOG.rst
@@ -13,6 +13,7 @@ may want to subscribe to `GitHub's tag feed
13
2019-03-30
14
15
* FIX error with the new color priority system and `discover` calendar type
16
+* FIX search results in ikhal are ordered, same as in `khal search`
17
18
0.10.0
19
======
khal/ui/__init__.py
@@ -1120,7 +1120,7 @@ def search(self):
1120
def _search(self, search_term):
1121
"""search for events matching `search_term"""
1122
self.window.backtrack()
1123
- events = list(self.collection.search(search_term))
+ events = sorted(self.collection.search(search_term))
1124
event_list = []
1125
event_list.extend([
1126
urwid.AttrMap(
0 commit comments