# HG changeset patch # User Kai Grojohann # Date 1053359234 0 # Node ID 821f85e23a1fbe53a2d490d47ed4f83a5e4d8168 # Parent 79e27b3ef7ef5d714f8e34e236437fa687ecaf12 * simple.el (kill-whole-line): New function. * bindings.el (global-map): Bind it. diff -r 79e27b3ef7ef -r 821f85e23a1f lisp/ChangeLog --- a/lisp/ChangeLog Mon May 19 14:52:43 2003 +0000 +++ b/lisp/ChangeLog Mon May 19 15:47:14 2003 +0000 @@ -1,3 +1,8 @@ +2003-05-19 Kai Gro,A_(Bjohann + + * simple.el (kill-whole-line): New function. + * bindings.el (global-map): Bind it. + 2003-05-19 Richard M. Stallman * net/goto-addr.el (goto-address-fontify-maximum-size): diff -r 79e27b3ef7ef -r 821f85e23a1f lisp/bindings.el --- a/lisp/bindings.el Mon May 19 14:52:43 2003 +0000 +++ b/lisp/bindings.el Mon May 19 15:47:14 2003 +0000 @@ -743,6 +743,7 @@ ;(define-key global-map [delete] 'backward-delete-char) ;; natural bindings for terminal keycaps --- defined in X keysym order +(define-key global-map [S-backspace] 'kill-whole-line) (define-key global-map [home] 'beginning-of-line) (define-key global-map [C-home] 'beginning-of-buffer) (define-key global-map [M-home] 'beginning-of-buffer-other-window) diff -r 79e27b3ef7ef -r 821f85e23a1f lisp/simple.el --- a/lisp/simple.el Mon May 19 14:52:43 2003 +0000 +++ b/lisp/simple.el Mon May 19 15:47:14 2003 +0000 @@ -2205,6 +2205,25 @@ (goto-char end)))) (point)))) +(defun kill-whole-line (&optional arg) + "Kill current line. +With prefix arg, kill that many lines from point. +If arg is negative, kill backwards. +If arg is zero, kill current line but exclude the trailing newline." + (interactive "P") + (setq arg (prefix-numeric-value arg)) + (cond ((zerop arg) + (kill-region (point) (progn (forward-visible-line 0) (point))) + (kill-region (point) (progn (end-of-visible-line) (point)))) + ((< arg 0) + (kill-line 1) + (kill-line (1+ arg)) + (unless (bobp) (forward-visible-line -1))) + (t + (kill-line 0) + (if (eobp) + (signal 'end-of-buffer nil) + (kill-line arg))))) (defun forward-visible-line (arg) "Move forward by ARG lines, ignoring currently invisible newlines only.