diff --git a/.config/quickshell/ii/services/Cliphist.qml b/.config/quickshell/ii/services/Cliphist.qml index 568526c12..615e949fb 100644 --- a/.config/quickshell/ii/services/Cliphist.qml +++ b/.config/quickshell/ii/services/Cliphist.qml @@ -21,6 +21,9 @@ Singleton { entry: a })) function fuzzyQuery(search: string): var { + if (search.trim() === "") { + return entries; + } if (root.sloppySearch) { const results = entries.slice(0, 100).map(str => ({ entry: str,