Merge from origin/emacs-24
[emacs.git] / lisp / progmodes / prog-mode.el
blob0d9fabd2057829a6a87624de71dd789fc93f35f5
1 ;;; prog-mode.el --- Generic major mode for programming -*- lexical-binding: t -*-
3 ;; Copyright (C) 2013-2015 Free Software Foundation, Inc.
5 ;; Maintainer: emacs-devel@gnu.org
6 ;; Keywords: internal
7 ;; Package: emacs
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This major mode is mostly intended as a parent of other programming
27 ;; modes. All major modes for programming languages should derive from this
28 ;; mode so that users can put generic customization on prog-mode-hook.
30 ;;; Code:
32 (eval-when-compile (require 'cl-lib))
34 (defgroup prog-mode nil
35 "Generic programming mode, from which others derive."
36 :group 'languages)
38 (defcustom prog-mode-hook nil
39 "Normal hook run when entering programming modes."
40 :type 'hook
41 :options '(flyspell-prog-mode abbrev-mode flymake-mode linum-mode
42 prettify-symbols-mode)
43 :group 'prog-mode)
45 (defvar prog-mode-map
46 (let ((map (make-sparse-keymap)))
47 (define-key map [?\C-\M-q] 'prog-indent-sexp)
48 map)
49 "Keymap used for programming modes.")
51 (defun prog-indent-sexp (&optional defun)
52 "Indent the expression after point.
53 When interactively called with prefix, indent the enclosing defun
54 instead."
55 (interactive "P")
56 (save-excursion
57 (when defun
58 (end-of-line)
59 (beginning-of-defun))
60 (let ((start (point))
61 (end (progn (forward-sexp 1) (point))))
62 (indent-region start end nil))))
64 (defvar-local prettify-symbols-alist nil
65 "Alist of symbol prettifications.
66 Each element looks like (SYMBOL . CHARACTER), where the symbol
67 matching SYMBOL (a string, not a regexp) will be shown as
68 CHARACTER instead.")
70 (defun prettify-symbols--compose-symbol (alist)
71 "Compose a sequence of characters into a symbol.
72 Regexp match data 0 points to the chars."
73 ;; Check that the chars should really be composed into a symbol.
74 (let* ((start (match-beginning 0))
75 (end (match-end 0))
76 (syntaxes-beg (if (memq (char-syntax (char-after start)) '(?w ?_))
77 '(?w ?_) '(?. ?\\)))
78 (syntaxes-end (if (memq (char-syntax (char-before end)) '(?w ?_))
79 '(?w ?_) '(?. ?\\)))
80 match)
81 (if (or (memq (char-syntax (or (char-before start) ?\s)) syntaxes-beg)
82 (memq (char-syntax (or (char-after end) ?\s)) syntaxes-end)
83 ;; syntax-ppss could modify the match data (bug#14595)
84 (progn (setq match (match-string 0)) (nth 8 (syntax-ppss))))
85 ;; No composition for you. Let's actually remove any composition
86 ;; we may have added earlier and which is now incorrect.
87 (remove-text-properties start end '(composition))
88 ;; That's a symbol alright, so add the composition.
89 (compose-region start end (cdr (assoc match alist)))))
90 ;; Return nil because we're not adding any face property.
91 nil)
93 (defun prettify-symbols--make-keywords ()
94 (if prettify-symbols-alist
95 `((,(regexp-opt (mapcar 'car prettify-symbols-alist) t)
96 (0 (prettify-symbols--compose-symbol ',prettify-symbols-alist))))
97 nil))
99 (defvar-local prettify-symbols--keywords nil)
101 ;;;###autoload
102 (define-minor-mode prettify-symbols-mode
103 "Toggle Prettify Symbols mode.
104 With a prefix argument ARG, enable Prettify Symbols mode if ARG is
105 positive, and disable it otherwise. If called from Lisp, enable
106 the mode if ARG is omitted or nil.
108 When Prettify Symbols mode and font-locking are enabled, symbols are
109 prettified (displayed as composed characters) according to the rules
110 in `prettify-symbols-alist' (which see), which are locally defined
111 by major modes supporting prettifying. To add further customizations
112 for a given major mode, you can modify `prettify-symbols-alist' thus:
114 (add-hook 'emacs-lisp-mode-hook
115 (lambda ()
116 (push '(\"<=\" . ?≤) prettify-symbols-alist)))
118 You can enable this mode locally in desired buffers, or use
119 `global-prettify-symbols-mode' to enable it for all modes that
120 support it."
121 :init-value nil
122 (if prettify-symbols-mode
123 ;; Turn on
124 (when (setq prettify-symbols--keywords (prettify-symbols--make-keywords))
125 (font-lock-add-keywords nil prettify-symbols--keywords)
126 (setq-local font-lock-extra-managed-props
127 (cons 'composition font-lock-extra-managed-props))
128 (font-lock-flush))
129 ;; Turn off
130 (when prettify-symbols--keywords
131 (font-lock-remove-keywords nil prettify-symbols--keywords)
132 (setq prettify-symbols--keywords nil))
133 (when (memq 'composition font-lock-extra-managed-props)
134 (setq font-lock-extra-managed-props (delq 'composition
135 font-lock-extra-managed-props))
136 (with-silent-modifications
137 (remove-text-properties (point-min) (point-max) '(composition nil))))))
139 (defun turn-on-prettify-symbols-mode ()
140 (when (and (not prettify-symbols-mode)
141 (local-variable-p 'prettify-symbols-alist))
142 (prettify-symbols-mode 1)))
144 ;;;###autoload
145 (define-globalized-minor-mode global-prettify-symbols-mode
146 prettify-symbols-mode turn-on-prettify-symbols-mode)
148 ;;;###autoload
149 (define-derived-mode prog-mode fundamental-mode "Prog"
150 "Major mode for editing programming language source code."
151 (setq-local require-final-newline mode-require-final-newline)
152 (setq-local parse-sexp-ignore-comments t)
153 ;; Any programming language is always written left to right.
154 (setq bidi-paragraph-direction 'left-to-right))
156 (provide 'prog-mode)
158 ;;; prog-mode.el ends here