From d474c779523c512e3bc91bc5ce7bc87cafc6372b Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Sat, 23 Sep 2023 22:05:37 +0200 Subject: Move user and auto cmds to plugins --- fnl/plugins/editor/comment.fnl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'fnl/plugins/editor/comment.fnl') diff --git a/fnl/plugins/editor/comment.fnl b/fnl/plugins/editor/comment.fnl index 63401a0..f15e61f 100644 --- a/fnl/plugins/editor/comment.fnl +++ b/fnl/plugins/editor/comment.fnl @@ -1,7 +1,23 @@ ;; Language aware commenting. +(local user-cmds [[:CommentNormal + (lambda [] + (let [comment-api (require :Comment.api)] + (comment-api.toggle.linewise.current))) + {:nargs 0}] + [:CommentVisual + (lambda [] + (let [comment-api (require :Comment.api)] + (comment-api.toggle.linewise (vim.fn.visualmode)))) + {:nargs 0}]]) + +(fn init [] + (let [cmds (require :util.cmds)] + (cmds.create-user-cmds user-cmds))) + {1 :numToStr/Comment.nvim :event :BufReadPost + : inti :opts {:toggler {;; Line-comment toggle keymap :line :mcc ;; Block-comment toggle keymap -- cgit v1.2.3-70-g09d2