Possible fix for issue#1: add whitespace greedyness and simulate M-SPC if (point) is not on a word during first invokation. Needs more testing though ...

This commit is contained in:
git@daemon.de
2016-05-17 15:46:02 +02:00
parent e741f8e34a
commit 1bd6df6aa7

View File

@@ -19,7 +19,7 @@
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
;; USA ;; USA
;; Version: 0.02 ;; Version: 0.03.TEST
;; Author: T.v.Dein <tlinden@cpan.org> ;; Author: T.v.Dein <tlinden@cpan.org>
;; Keywords: kill delete ;; Keywords: kill delete
;; URL: https://github.com/tlinden/viking-mode ;; URL: https://github.com/tlinden/viking-mode
@@ -35,13 +35,16 @@
;; The default key binding is C-d, but you may also bind it to C-k or ;; The default key binding is C-d, but you may also bind it to C-k or
;; whatever you wish. ;; whatever you wish.
;; If you press C-d the first time, the word at point will be deleted. ;; If you press C-d the first time, the word at point will be deleted
;; If you press it again, the remainder of the line from point will be ;; (but if there's no word at point but whitespaces or an empty line),
;; deleted. If pressed again, the whole line, then the paragraph and ;; they will be deleted instead, which is the same as M-SPC.
;; finally the whole buffer will be deleted.
;; If you press C-d again, the remainder of the line from point will
;; be deleted. If pressed again, the whole line, then the paragraph
;; and finally the whole buffer will be deleted.
;; Like: ;; Like:
;; [keep pressing ctrl] C-d - del word ;; [keep pressing ctrl] C-d - del word | spc
;; C-d C-d - del line remainder ;; C-d C-d - del line remainder
;; C-d C-d C-d - del line ;; C-d C-d C-d - del line
;; C-d C-d C-d C-d - del paragraph ;; C-d C-d C-d C-d - del paragraph
@@ -51,6 +54,11 @@
;; something else in between, it starts from scratch (i.e. delete ;; something else in between, it starts from scratch (i.e. delete
;; word). ;; word).
;; By default viking-mode is greedy: after applying a kill function it
;; looks if point ends up alone on an empty line or inside
;; whitespaces. In such a case, those will be deleted as well. The
;; greedy behavior may be turned off however.
;;; Install: ;;; Install:
;; To use, save viking-mode.el to a directory in your load-path. ;; To use, save viking-mode.el to a directory in your load-path.
@@ -76,6 +84,11 @@
;; (setq viking-really-delete t) ;; (setq viking-really-delete t)
;; To turn off greedy deleting of whitespace remainders, set
;; 'viking-greedy-kill to nil:
;; (setq viking-greedy-kill nil)
;; You can change the default key binding by: ;; You can change the default key binding by:
;; (define-key viking-mode-map (kbd "C-k") 'viking-kill-thing-at-point) ;; (define-key viking-mode-map (kbd "C-k") 'viking-kill-thing-at-point)
@@ -183,6 +196,12 @@ nothing will remain available via kill-ring once deleted.
The default is nil: keep deleted things in the kill-ring." The default is nil: keep deleted things in the kill-ring."
:group 'viking-mode) :group 'viking-mode)
(defcustom viking-greedy-kill t
"If set to t (default), whitespaces and newline at point will be
deleted after the kill function, if any. Uses 'just-one-space."
:group 'viking-mode)
;;;; Functions ;;;; Functions
@@ -224,6 +243,14 @@ should be a point-moving function."
(throw 'nomore t)))) ;; another key, break the loop and return the count (throw 'nomore t)))) ;; another key, break the loop and return the count
times))) times)))
(defun viking--point-is-in-space ()
"Return true if point is surrounded by space (which is: [\s\r\n])."
(interactive)
(or
(looking-at "[[:space:]]+")
(eq (point) (line-end-position))))
;;;;; kill/delete wrappers ;;;;; kill/delete wrappers
(defun viking--kill-region (beg end) (defun viking--kill-region (beg end)
@@ -264,19 +291,37 @@ should be a point-moving function."
(viking--kill-region beg end) (viking--kill-region beg end)
(message "word right of point deleted"))) (message "word right of point deleted")))
(defun viking--kill-space()
"Kill space around point, including newline(s)."
(interactive)
(let ((beg (save-excursion (skip-chars-backward " \t\r\n") (point)))
(end (save-excursion (skip-chars-forward " \t\r\n") (point))))
(viking--blink-region beg end))
(just-one-space -1)
(message "spaces cleared"))
;;;;; Public interactive kill functions ;;;;; Public interactive kill functions
(defun viking-kill-word () (defun viking-kill-word ()
"Kill word at point" "If point is on space or newline, delete those (like M-SPC), else kill word at point.
If 'viking-greedy-kill is t, clean up spaces and newlines afterwards."
(interactive) (interactive)
(if (eq (point) (line-beginning-position)) (if (viking--point-is-in-space)
(viking--kill-word-right) (viking--kill-space)
(viking--kill-word-at-point) (progn
)) (if (eq (point) (line-beginning-position))
(viking--kill-word-right)
(viking--kill-word-at-point)
)
(when viking-greedy-kill
(viking--kill-space))
))
)
(defun viking-kill-line () (defun viking-kill-line ()
"Kill line at point including newline." "Kill line at point including newline.
If 'viking-greedy-kill is t, clean up spaces and newlines afterwards."
(interactive) (interactive)
(viking--blink-region (viking--get-point 'beginning-of-line 1) (viking--blink-region (viking--get-point 'beginning-of-line 1)
(viking--get-point 'end-of-line 1)) (viking--get-point 'end-of-line 1))
@@ -289,6 +334,8 @@ should be a point-moving function."
(kill-line) (kill-line)
) )
(setq kill-whole-line k) (setq kill-whole-line k)
(when viking-greedy-kill
(viking--kill-space))
)) ))
(message "line at point deleted")) (message "line at point deleted"))
@@ -303,7 +350,8 @@ should be a point-moving function."
(message "line from point deleted")))) (message "line from point deleted"))))
(defun viking-kill-paragraph () (defun viking-kill-paragraph ()
"Kill paragraph at point." "Kill paragraph at point.
If 'viking-greedy-kill is t, clean up spaces and newlines afterwards."
(interactive) (interactive)
(let (let
((beg (viking--get-point 'backward-paragraph 1)) ((beg (viking--get-point 'backward-paragraph 1))
@@ -311,6 +359,8 @@ should be a point-moving function."
(progn (progn
(viking--blink-region beg end) (viking--blink-region beg end)
(viking--kill-region beg end) (viking--kill-region beg end)
(when viking-greedy-kill
(viking--kill-space))
(message "paragraph at point deleted")))) (message "paragraph at point deleted"))))
(defun viking-kill-buffer () (defun viking-kill-buffer ()