diff options
author | Thanos Apollo <[email protected]> | 2024-03-08 08:26:17 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-03-08 08:33:09 +0200 |
commit | a898bff27726de134941ff17f03473140db64e2b (patch) | |
tree | 2ff056b55863ec7b43e6f1eee1fb84c32a1b3968 | |
parent | cde06fe62754afc2e2df385e667669db9b853342 (diff) |
gnosis-dashboard-output-decks: style
Change indentation for lambda func
-rw-r--r-- | gnosis.el | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1637,11 +1637,13 @@ to improve readability." when output collect (list (number-to-string id) (vconcat output))))) (local-set-key (kbd "e") #'gnosis-dashboard-edit-deck) - (local-set-key (kbd "a") #'(lambda () (interactive) (gnosis-add-deck (read-string "Deck name: ")) + (local-set-key (kbd "a") #'(lambda () (interactive) + (gnosis-add-deck (read-string "Deck name: ")) (gnosis-dashboard-output-decks) (revert-buffer t t t))) - (local-set-key (kbd "s") #'(lambda () (interactive) (gnosis-suspend-deck - (string-to-number (tabulated-list-get-id))) + (local-set-key (kbd "s") #'(lambda () (interactive) + (gnosis-suspend-deck + (string-to-number (tabulated-list-get-id))) (gnosis-dashboard-output-decks) (revert-buffer t t t)))) ;; (local-set-key (kbd "d") #'(lambda () (interactive) |