aboutsummaryrefslogtreecommitdiffstats
path: root/oni-yasnippet.el
blob: 1e4d7f269c8cfb73aab0db9e4c774710361ea9aa (plain)
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
;;; oni-yasnippet.el --- Yasnippet configuration     -*- lexical-binding: t; -*-

;; Copyright (C) 2019  Tom Willemse

;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2023.0712.232619
;; Package-Requires: (yasnippet yasnippet-snippets diminish)

;; 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 <https://www.gnu.org/licenses/>.

;;; Commentary:

;; Yasnippet configuration. To use this configuratin you should put the
;; following two lines in your init file:
;;
;;     (with-eval-after-load 'yasnippet (require 'oni-yasnippet))
;;     (yas-global-mode)


;;; Code:

(require 'yasnippet)
(require 'diminish)

(defun oni-yasnippet-remove-snippet-by-name (name mode)
  "Remove the snippet NAME from MODE's snippet tables."
  (let* ((mode-table (gethash mode yas--tables))
         (uuidhash-table (yas--table-uuidhash mode-table))
         (hash-table (yas--table-hash mode-table))
         (snippet (gethash name uuidhash-table))
         (key (yas--template-key snippet)))
    (remhash key hash-table)
    (remhash name uuidhash-table)))

(defun oni-yasnippet-cleanup-snippets ()
  "Remove some snippets that I don't like."
  (oni-yasnippet-remove-snippet-by-name "defun" 'lisp-interaction-mode))

(with-eval-after-load 'yasnippet (diminish 'yas-minor-mode))

(setq-default yas-buffer-local-condition yas-not-string-or-comment-condition)

(define-key yas-minor-mode-map (kbd "<tab>") nil)
(define-key yas-minor-mode-map (kbd "C-\\") 'yas-expand)
(define-key yas-minor-mode-map (kbd "SPC") yas-maybe-expand)
(define-key yas-minor-mode-map (kbd "TAB") nil)

(add-hook 'yas-after-reload-hook #'oni-yasnippet-cleanup-snippets)

(provide 'oni-yasnippet)
;;; oni-yasnippet.el ends here