Add group for custom functions

This commit is contained in:
Andrea Ciceri 2023-08-08 11:00:38 +02:00
parent 0ad1cd14a2
commit de24afcb76
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg

View file

@ -218,10 +218,13 @@
(windmove-mode +1) (windmove-mode +1)
(defcustom ccr/v-resize-amount 4 (defcustom ccr/v-resize-amount 4
"How smany rows move when calling `ccr/v-resize`" "How smany rows move when calling `ccr/v-resize`"
:type 'integer) :type 'integer
:group 'ccr)
(defcustom ccr/h-resize-amount 4 (defcustom ccr/h-resize-amount 4
"How many columns move when calling `ccr/h-resize`" "How many columns move when calling `ccr/h-resize`"
:type 'integer) ;; (defcustom ccr/resize-rows 4) :type 'integer
:group 'ccr
)
(defun ccr/v-resize (key) (defun ccr/v-resize (key)
"Interactively vertically resize the window" "Interactively vertically resize the window"
(interactive "cHit >/< to enlarge/shrink") (interactive "cHit >/< to enlarge/shrink")