2019-02-27 08:21:59 +01:00
|
|
|
;;; oni-yasnippet.el --- Yasnippet configuration -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
;; Copyright (C) 2019 Tom Willemse
|
|
|
|
|
|
|
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
|
|
|
;; Keywords: local
|
2023-12-12 17:53:30 +01:00
|
|
|
;; Version: 2023.1212.085307
|
2019-02-28 08:52:37 +01:00
|
|
|
;; Package-Requires: (yasnippet yasnippet-snippets diminish)
|
2019-02-27 08:21:59 +01:00
|
|
|
|
|
|
|
;; 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:
|
|
|
|
|
2021-07-16 07:34:08 +02:00
|
|
|
;; 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)
|
|
|
|
|
2019-02-27 08:21:59 +01:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'yasnippet)
|
|
|
|
(require 'diminish)
|
|
|
|
|
2023-07-13 08:28:12 +02:00
|
|
|
(defun oni-yasnippet-remove-snippet-by-name (name mode)
|
|
|
|
"Remove the snippet NAME from MODE's snippet tables."
|
2023-12-12 17:53:30 +01:00
|
|
|
(and-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)))
|
2023-07-13 08:28:12 +02:00
|
|
|
(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))
|
|
|
|
|
2020-04-08 20:16:00 +02:00
|
|
|
(with-eval-after-load 'yasnippet (diminish 'yas-minor-mode))
|
2019-02-27 08:21:59 +01:00
|
|
|
|
2021-09-20 08:53:47 +02:00
|
|
|
(setq-default yas-buffer-local-condition yas-not-string-or-comment-condition)
|
|
|
|
|
2021-07-01 00:17:55 +02:00
|
|
|
(define-key yas-minor-mode-map (kbd "<tab>") nil)
|
2019-02-27 08:21:59 +01:00
|
|
|
(define-key yas-minor-mode-map (kbd "C-\\") 'yas-expand)
|
2021-07-01 00:17:55 +02:00
|
|
|
(define-key yas-minor-mode-map (kbd "SPC") yas-maybe-expand)
|
2019-02-27 08:21:59 +01:00
|
|
|
(define-key yas-minor-mode-map (kbd "TAB") nil)
|
|
|
|
|
2023-07-13 08:28:12 +02:00
|
|
|
(add-hook 'yas-after-reload-hook #'oni-yasnippet-cleanup-snippets)
|
|
|
|
|
2019-02-27 08:21:59 +01:00
|
|
|
(provide 'oni-yasnippet)
|
|
|
|
;;; oni-yasnippet.el ends here
|