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
|
2021-07-01 00:17:55 +02:00
|
|
|
;; Version: 2021.0630.150352
|
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.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'yasnippet)
|
|
|
|
(require 'diminish)
|
|
|
|
|
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-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)
|
|
|
|
|
|
|
|
;;;###autoload(with-eval-after-load 'yasnippet (require 'oni-yasnippet))
|
|
|
|
;;;###autoload
|
2019-02-28 07:46:23 +01:00
|
|
|
(add-hook 'emacs-startup-hook 'yas-global-mode)
|
2019-02-27 08:21:59 +01:00
|
|
|
|
|
|
|
(provide 'oni-yasnippet)
|
|
|
|
;;; oni-yasnippet.el ends here
|