You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.2 KiB
61 lines
2.2 KiB
;;; gitignore-mode.el --- Major mode for editing .gitignore files -*- lexical-binding: t; -*- |
|
|
|
;; Copyright (c) 2012-2013 Sebastian Wiesner |
|
;; Copyright (C) 2012-2015 The Magit Project Developers |
|
|
|
;; Author: Sebastian Wiesner <lunaryorn@gmail.com> |
|
;; Maintainer: Jonas Bernoulli <jonas@bernoul.li> |
|
;; Homepage: https://github.com/magit/git-modes |
|
;; Keywords: convenience vc git |
|
;; Package-Version: 20150330.1048 |
|
|
|
;; This file is not part of GNU Emacs. |
|
|
|
;; This file 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, or (at your option) |
|
;; any later version. |
|
|
|
;; This file 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 file. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
;;; Commentary: |
|
|
|
;; A major mode for editing .gitignore files. |
|
|
|
;;; Code: |
|
|
|
(require 'conf-mode) |
|
|
|
(defvar gitignore-mode-font-lock-keywords |
|
'(("^\\s<.*$" . font-lock-comment-face) |
|
("^!" . font-lock-negation-char-face) ; Negative pattern |
|
("/" . font-lock-constant-face) ; Directory separators |
|
("[*?]" . font-lock-keyword-face) ; Glob patterns |
|
("\\[.+?\\]" . font-lock-keyword-face))) ; Ranged glob patterns |
|
|
|
;;;###autoload |
|
(define-derived-mode gitignore-mode conf-unix-mode "Gitignore" |
|
"A major mode for editing .gitignore files." |
|
(conf-mode-initialize "#") |
|
;; Disable syntactic font locking, because comments are only valid at |
|
;; beginning of line. |
|
(setq font-lock-defaults '(gitignore-mode-font-lock-keywords t t)) |
|
(set (make-local-variable 'conf-assignment-sign) nil)) |
|
|
|
;;;###autoload |
|
(dolist (pattern (list "/\\.gitignore\\'" |
|
"/\\.git/info/exclude\\'" |
|
"/git/ignore\\'")) |
|
(add-to-list 'auto-mode-alist (cons pattern 'gitignore-mode))) |
|
|
|
(provide 'gitignore-mode) |
|
;; Local Variables: |
|
;; indent-tabs-mode: nil |
|
;; End: |
|
;;; gitignore-mode.el ends here
|
|
|