forked from magnars/expand-region.el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
expand-region-custom.el
97 lines (77 loc) · 3.23 KB
/
expand-region-custom.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
87
88
89
90
91
92
93
94
95
96
97
;;; expand-region-custom.el --- Increase selected region by semantic units.
;; Copyright (C) 2012 Magnar Sveen
;; Author: Magnar Sveen <[email protected]>
;; 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:
;; This file holds customization variables.
;;; Code:
;;;###autoload
(defgroup expand-region nil
"Increase selected region by semantic units."
:group 'tools)
;;;###autoload
(defcustom expand-region-preferred-python-mode 'python
"The name of your preferred python mode"
:group 'expand-region
:type '(choice (const :tag "Emacs' python.el" 'python)
(const :tag "fgallina's python.el" 'fgallina-python)
(const :tag "python-mode.el" 'python-mode)))
;;;###autoload
(defcustom expand-region-guess-python-mode t
"If expand-region should attempt to guess your preferred python mode"
:group 'expand-region
:type '(choice (const :tag "Guess" t)
(const :tag "Do not guess" nil)))
(defun expand-region-guess-python-mode ()
"Guess the user's preferred python mode."
(setq expand-region-preferred-python-mode
(if (fboundp 'python-setup-brm)
'python
'fgallina-python)))
;;;###autoload
(defcustom expand-region-autocopy-register ""
"If set to a string of a single character (try \"e\"), then the
contents of the most recent expand or contract command will
always be copied to the register named after that character."
:group 'expand-region
:type 'string)
;;;###autoload
(defcustom expand-region-skip-whitespace t
"If expand-region should skip past whitespace on initial expansion"
:group 'expand-region
:type '(choice (const :tag "Skip whitespace" t)
(const :tag "Do not skip whitespace" nil)))
;;;###autoload
(defcustom expand-region-fast-keys-enabled t
"If expand-region should bind fast keys after initial expand/contract"
:group 'expand-region
:type '(choice (const :tag "Enable fast keys" t)
(const :tag "Disable fast keys" nil)))
;;;###autoload
(defcustom expand-region-contract-fast-key "-"
"Key to use after an initial expand/contract to contract once more."
:group 'expand-region
:type 'string)
;;;###autoload
(defcustom expand-region-reset-fast-key "0"
"Key to use after an initial expand/contract to undo."
:group 'expand-region
:type 'string)
;;;###autoload
(defcustom expand-region-exclude-text-mode-expansions
'(html-mode nxml-mode)
"List of modes which derive from `text-mode' for which text mode expansions are not appropriate."
:group 'expand-region
:type '(repeat (symbol :tag "Major Mode" unknown)))
(provide 'expand-region-custom)
;;; expand-region-custom.el ends here