summaryrefslogtreecommitdiff
path: root/fnl/plugins/harpoon.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/plugins/harpoon.fnl')
-rw-r--r--fnl/plugins/harpoon.fnl6
1 files changed, 3 insertions, 3 deletions
diff --git a/fnl/plugins/harpoon.fnl b/fnl/plugins/harpoon.fnl
index 723a52b..62ebf17 100644
--- a/fnl/plugins/harpoon.fnl
+++ b/fnl/plugins/harpoon.fnl
@@ -3,17 +3,17 @@
(local opts {:ui_max_width 64 :title " ⇁ "})
(local user-cmds [[:HarpoonAdd
- (lambda []
+ (λ []
(let [harpoon (require :harpoon)]
(: (harpoon:list) :add)))
{:nargs 0}]
[:HarpoonUI
- (lambda []
+ (λ []
(let [harpoon (require :harpoon)]
(harpoon.ui:toggle_quick_menu (harpoon:list) opts)))
{:nargs 0}]])
-(lambda select [nr]
+(λ select [nr]
(let [harpoon (require :harpoon)]
(: (harpoon:list) :select nr)))