79570691

Date: 2025-04-12 16:30:06
Score: 0.5
Natty:
Report link

I recommend defining your own function in your init.el

(defun kill-to-end-of-buffer ()
    "Kill text from point to the end of the buffer."
    (interactive)
    (kill-region (point) (point-max)))

then binding it to a key:

(global-set-key (kbd "C-s-k") 'kill-to-end-of-buffer)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Aiden Cullo