summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/yasnippet.el
diff options
context:
space:
mode:
authorSimeon Simeonov2016-11-17 13:30:23 +0100
committerSimeon Simeonov2016-11-17 13:30:23 +0100
commit27eb5412df5b4971fa9facb5241db6be52bf37c1 (patch)
treee8a30245369964c0dc449bbb051b307f6813b420 /.emacs.d/lisp/yasnippet.el
parentdd45f87fb33f3c28a5ac2b3edd72dc7ba1ede45e (diff)
Upgraded yasnippet and mode-yaml
Diffstat (limited to '.emacs.d/lisp/yasnippet.el')
-rw-r--r--.emacs.d/lisp/yasnippet.el19
1 files changed, 11 insertions, 8 deletions
diff --git a/.emacs.d/lisp/yasnippet.el b/.emacs.d/lisp/yasnippet.el
index 3f9660e..c308c9b 100644
--- a/.emacs.d/lisp/yasnippet.el
+++ b/.emacs.d/lisp/yasnippet.el
@@ -5,10 +5,10 @@
5;; João Távora <joaotavora@gmail.com>, 5;; João Távora <joaotavora@gmail.com>,
6;; Noam Postavsky <npostavs@gmail.com> 6;; Noam Postavsky <npostavs@gmail.com>
7;; Maintainer: Noam Postavsky <npostavs@gmail.com> 7;; Maintainer: Noam Postavsky <npostavs@gmail.com>
8;; Version: 0.10.0 8;; Version: 0.11.0
9;; X-URL: http://github.com/capitaomorte/yasnippet 9;; X-URL: http://github.com/joaotavora/yasnippet
10;; Keywords: convenience, emulation 10;; Keywords: convenience, emulation
11;; URL: http://github.com/capitaomorte/yasnippet 11;; URL: http://github.com/joaotavora/yasnippet
12;; Package-Requires: ((cl-lib "0.5")) 12;; Package-Requires: ((cl-lib "0.5"))
13;; EmacsWiki: YaSnippetMode 13;; EmacsWiki: YaSnippetMode
14 14
@@ -127,7 +127,7 @@
127;; `custom-set-variables' is executed in your .emacs file. 127;; `custom-set-variables' is executed in your .emacs file.
128;; 128;;
129;; For more information and detailed usage, refer to the project page: 129;; For more information and detailed usage, refer to the project page:
130;; http://github.com/capitaomorte/yasnippet 130;; http://github.com/joaotavora/yasnippet
131 131
132;;; Code: 132;;; Code:
133 133
@@ -514,7 +514,7 @@ snippet itself contains a condition that returns the symbol
514 514
515;;; Internal variables 515;;; Internal variables
516 516
517(defconst yas--version "0.10.0") 517(defconst yas--version "0.11.0")
518 518
519(defvar yas--menu-table (make-hash-table) 519(defvar yas--menu-table (make-hash-table)
520 "A hash table of MAJOR-MODE symbols to menu keymaps.") 520 "A hash table of MAJOR-MODE symbols to menu keymaps.")
@@ -1876,9 +1876,12 @@ prefix argument."
1876 (yas-direct-keymaps-reload) 1876 (yas-direct-keymaps-reload)
1877 1877
1878 (run-hooks 'yas-after-reload-hook) 1878 (run-hooks 'yas-after-reload-hook)
1879 (yas--message (if errors 2 3) "Reloaded everything%s...%s." 1879 (yas--message (if errors 2 3)
1880 (if no-jit "" " (snippets will load just-in-time)") 1880 (if no-jit "Snippets loaded %s."
1881 (if errors " (some errors, check *Messages*)" ""))))) 1881 "Prepared just-in-time loading of snippets %s.")
1882 (if errors
1883 "with some errors. Check *Messages*"
1884 "successfully")))))
1882 1885
1883(defvar yas-after-reload-hook nil 1886(defvar yas-after-reload-hook nil
1884 "Hooks run after `yas-reload-all'.") 1887 "Hooks run after `yas-reload-all'.")