VL
Size: a a a
VL
MK
MK
VL
VL
VL
VL
VL
PG
PG
VL
PG
PG
(defun my-backward-kill-word-or-region (&optional count)
"Kill COUNT words before point or region if it's active."
(interactive "p")
(if (use-region-p)
(kill-region (region-beginning) (region-end))
(backward-kill-word count)))
(defun my-sp-backward-kill-word-or-region (count)
"Kill COUNT words before point or region if it's active."
(interactive "p")
(if (use-region-p)
(sp-kill-region (region-beginning) (region-end))
(sp-backward-kill-word count)))
S
PG
PG
VL