1
0
Fork 0
emacs-config/oni-yasnippet.el

64 lines
2.2 KiB
EmacsLisp
Raw Normal View History

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
;; 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:
;; 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)
(defun oni-yasnippet-remove-snippet-by-name (name mode)
"Remove the snippet NAME from MODE's snippet tables."
(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)))
(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))
2019-02-27 08:21:59 +01:00
(setq-default yas-buffer-local-condition yas-not-string-or-comment-condition)
(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)
(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)
(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