iens

Manager of links to read
git clone https://git.instinctive.eu/iens.git
Log | Files | Refs | README | LICENSE

commit 8e33e497f444cd6329a09bb3e95347e079a31c1b
parent 8dec0821d88cba42a180c097979a9cb15749c0ea
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date:   Sat,  6 Jan 2024 17:09:18 +0000

Command `print-config` output is sorted
Diffstat:
Msrc/iens.scm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/iens.scm b/src/iens.scm @@ -193,7 +193,7 @@ (query (for-each-row* (lambda (key val) (write-line (conc key ": " val)))) - (sql db "SELECT key,val FROM config;")) + (sql db "SELECT key,val FROM config ORDER BY key;")) (let loop ((todo args)) (unless (null? todo) (write-line (conc (car todo) ": " (get-config (car todo))))