escriba 0.1.21

The escriba editor binary. Composes every escriba-* crate via madori's app loop + garasu's GPU stack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; escriba-comment — gcc / gc-motion comment toggling.
;; Mirrors numToStr/Comment.nvim.
(defescribaplugin
  :name          "escriba-comment"
  :version       "0.1.0"
  :category      "common"
  :description   "gcc / gc-motion line + block comment toggling"
  :blnvim-origin "numToStr/Comment.nvim"
  :ativar-em     ("Startup"))

(defkeybind :mode "normal" :key "gcc" :action "comment.toggle-line"  :description "toggle line comment")
(defkeybind :mode "normal" :key "gbc" :action "comment.toggle-block" :description "toggle block comment")
(defkeybind :mode "visual" :key "gc"  :action "comment.toggle-line"  :description "toggle comment on selection")
(defcmd :name "CommentToggle" :description "toggle comment on the current line" :action "comment.toggle-line")