diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-29 00:43:50 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-29 00:43:50 +0200 |
commit | f048e7a0042c10885ee37301464febc8c8f63e96 (patch) | |
tree | ead501d5675c0e57b90c82a952aa3dcb9d7c487e /fnl/plugins/orgmode.fnl | |
parent | 55fbc6552e97e7f41c180adade95c467963c2af2 (diff) |
Replace lambda with λ
Diffstat (limited to 'fnl/plugins/orgmode.fnl')
-rw-r--r-- | fnl/plugins/orgmode.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/plugins/orgmode.fnl b/fnl/plugins/orgmode.fnl index 5415be2..cb94462 100644 --- a/fnl/plugins/orgmode.fnl +++ b/fnl/plugins/orgmode.fnl @@ -16,12 +16,12 @@ :desc "Search headings"}]) (local user-cmds [[:OrgAgendaPrompt - (lambda [] + (λ [] (let [orgmode (require :orgmode)] (orgmode.action :agenda.prompt))) {:nargs 0}] [:OrgCapturePrompt - (lambda [] + (λ [] (let [orgmode (require :orgmode)] (orgmode.action :capture.prompt))) {:nargs 0}]]) |