summaryrefslogtreecommitdiff
path: root/lisp/km-editing.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-07-02 00:54:41 -0400
committerKyle Meyer <kyle@kyleam.com>2016-07-02 00:54:41 -0400
commitcc7a846adf97880313764b54c85c3676e53b69f8 (patch)
treeae4a7b220691298155537c55f19035994b6077b4 /lisp/km-editing.el
parent6a79eb4b135dba6e637abe47747e169eae682f33 (diff)
downloademacs.d-cc7a846adf97880313764b54c85c3676e53b69f8.tar.gz
Add km/count-words-region command
Diffstat (limited to 'lisp/km-editing.el')
-rw-r--r--lisp/km-editing.el42
1 files changed, 42 insertions, 0 deletions
diff --git a/lisp/km-editing.el b/lisp/km-editing.el
index 159e0da..e172fec 100644
--- a/lisp/km-editing.el
+++ b/lisp/km-editing.el
@@ -104,6 +104,48 @@ XSELECT is non-nil, copy the region with `x-select-text'."
(buffer-substring-no-properties (point-min) (point-max)))))
(pop-to-buffer wrapped-buffer)))
+(defun km/delete-comment-lines (orig-buf)
+ (let ((comment-char (with-current-buffer orig-buf
+ comment-start)))
+ (when comment-char
+ (flush-lines (concat "^" (regexp-quote comment-char) ".*$")))))
+
+(defvar km/count-words-region-filter-functions '(km/delete-comment-lines)
+ "Hooks run by `km/count-words-region-filtered'.
+These will be called in a temporary buffer and should delete any
+text that should not be considered by `count-words-region'. They
+will be passed the original buffer. At the start of the function
+call, the point will be at the beginning of the buffer, and these
+functions should return it there.")
+
+;;;###autoload
+(defun km/count-words-region (start end &optional arg)
+ "Call `count-words-region', possibly filtering input.
+Before counting words, `km/count-words-region-filter-functions'
+is called. If the buffer's mode does not derive from
+`text-mode', `count-words-region' is called directly."
+ (interactive (if current-prefix-arg
+ (list nil nil current-prefix-arg)
+ (list (region-beginning) (region-end) nil)))
+ (if (not (derived-mode-p 'text-mode))
+ (call-interactively #'count-words-region)
+ (let ((mode major-mode)
+ (buf (current-buffer))
+ (text (apply #'buffer-substring-no-properties
+ (if start
+ (list start end)
+ (list (point-min) (point-max))))))
+ (with-temp-buffer
+ (insert text)
+ (funcall mode)
+ (goto-char (point-min))
+ (run-hook-with-args 'km/count-words-region-filter-functions
+ buf)
+ (when start
+ (set-mark (point-min))
+ (goto-char (point-max)))
+ (call-interactively #'count-words-region)))))
+
;;;###autoload
(defun km/narrow-to-comment-heading ()
"Narrow to the current comment heading subtree.