Add group for custom functions
This commit is contained in:
parent
0ad1cd14a2
commit
de24afcb76
1 changed files with 5 additions and 2 deletions
7
init.el
7
init.el
|
@ -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")
|
||||||
|
|
Reference in a new issue