forked from magnars/expand-region.el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththe-org-mode-expansions.el
86 lines (69 loc) · 2.78 KB
/
the-org-mode-expansions.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
;;; the-org-mode-expansions.el --- Expansions for expand-region to be used in org-mode
;; Copyright (C) 2012 Magnar Sveen
;; Author: Magnar Sveen
;; Based on text-mode-expansions by: Ivan Andrus
;; Keywords: marking region
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; The file needs to be weirdly name (prefixed with the-) to avoid
;; conflict with org-reload, which bases its functionality on the names
;; of files, for some reason.
;;
;; Feel free to contribute any other expansions for org-mode at
;;
;; https://github.com/magnars/expand-region.el
;;; Code:
(require 'expand-region-core)
(declare-function org-up-element "org")
(declare-function org-mark-subtree "org")
(defun er/mark-sentence ()
"Marks one sentence."
(interactive)
(forward-char 1)
(backward-sentence 1)
(set-mark (point))
(forward-sentence 1)
(exchange-point-and-mark))
(defun er/mark-paragraph ()
"Marks one paragraph."
(interactive)
(mark-paragraph)
(exchange-point-and-mark)
(skip-chars-backward er--space-str)
(exchange-point-and-mark)
(skip-chars-forward er--space-str))
(defun er/mark-org-code-block ()
"Marks an org-code-block."
(interactive)
(let ((case-fold-search t)
(re "#\\+begin_\\(\\sw+\\)"))
(unless (looking-at re)
(search-backward-regexp re))
(set-mark (point))
(search-forward (concat "#+end_" (match-string 1)))
(exchange-point-and-mark)))
(defun er/mark-org-parent ()
"Marks a heading 1 level up from current subheading"
(interactive)
(org-up-element)
(org-mark-subtree))
(defun er/add-org-mode-expansions ()
"Adds org-specific expansions for buffers in org-mode"
(set (make-local-variable 'er/try-expand-list) (append
er/try-expand-list
'(org-mark-subtree
er/mark-org-code-block
er/mark-sentence
er/mark-org-parent
er/mark-paragraph))))
(er/enable-mode-expansions 'org-mode 'er/add-org-mode-expansions)
(provide 'the-org-mode-expansions)