Skip to content

Commit 3ce0c49

Browse files
committed
doom-snippet-* -> doom-snippets-*
1 parent 162713d commit 3ce0c49

File tree

25 files changed

+33
-33
lines changed

25 files changed

+33
-33
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ to_string()
109109
If this variable is non-nil, this package will define the following shortcut
110110
function aliases for your convenience:
111111

112-
+ `!%!` = `(doom-snippet-format "%n%s%n")`
113-
+ `!%` = `(doom-snippet-format "%n%s")`
114-
+ `%$` = `(doom-snippet-format "%>")`
115-
+ `(%expand ...)` = `(doom-snippet-expand ...)`
116-
+ `(%format ...)` = `(doom-snippet-format ...)`
112+
+ `!%!` = `(doom-snippets-format "%n%s%n")`
113+
+ `!%` = `(doom-snippets-format "%n%s")`
114+
+ `%$` = `(doom-snippets-format "%>")`
115+
+ `(%expand ...)` = `(doom-snippets-expand ...)`
116+
+ `(%format ...)` = `(doom-snippets-format ...)`
117117
+ `(%without-trigger ...)` = `(doom-snippets-without-trigger ...)`
118118

119119

doom-snippets.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
(defvar doom-snippets-enable-short-helpers nil
3333
"If non-nil, defines convenience aliases for doom-snippets' api.
3434
35-
+ `!%!' = (doom-snippet-format \"%n%s%n\")
36-
+ `!%' = (doom-snippet-format \"%n%s\")
37-
+ `%$' = (doom-snippet-format \"%e\")
38-
+ `%expand' = `doom-snippet-expand'
39-
+ `%format' = `doom-snippet-format'
35+
+ `!%!' = (doom-snippets-format \"%n%s%n\")
36+
+ `!%' = (doom-snippets-format \"%n%s\")
37+
+ `%$' = (doom-snippets-format \"%e\")
38+
+ `%expand' = `doom-snippets-expand'
39+
+ `%format' = `doom-snippets-format'
4040
+ `%without-trigger' = `doom-snippets-without-trigger'")
4141

4242
;;;###autoload

snippets/+emacs-lisp-ert-mode/deft

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# uuid: deft
44
# type: command
55
# --
6-
(doom-snippet-expand :uuid "ert-deftest")
6+
(doom-snippets-expand :uuid "ert-deftest")

snippets/buttercup-minor-mode/desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# uuid: desc
44
# type: command
55
# --
6-
(doom-snippet-expand :uuid "describe")
6+
(doom-snippets-expand :uuid "describe")

snippets/buttercup-minor-mode/ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# uuid: ex
44
# type: command
55
# --
6-
(doom-snippet-expand :uuid "expect")
6+
(doom-snippets-expand :uuid "expect")

snippets/emacs-lisp-mode/ah

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# uuid: ah
55
# type: command
66
# --
7-
(doom-snippet-expand :uuid "add-hook")
7+
(doom-snippets-expand :uuid "add-hook")

snippets/emacs-lisp-mode/cdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# uuid: cdef
44
# type: command
55
# --
6-
(doom-snippet-expand :uuid "cl-defun")
6+
(doom-snippets-expand :uuid "cl-defun")

snippets/emacs-lisp-mode/cdefm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# uuid: cdefm
44
# type: command
55
# --
6-
(doom-snippet-expand :uuid "cl-defmacro")
6+
(doom-snippets-expand :uuid "cl-defmacro")

snippets/emacs-lisp-mode/def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# uuid: def
44
# type: command
55
# --
6-
(doom-snippet-expand :uuid "defun")
6+
(doom-snippets-expand :uuid "defun")

snippets/emacs-lisp-mode/defm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# uuid: defm
44
# type: command
55
# --
6-
(doom-snippet-expand :uuid "defmacro")
6+
(doom-snippets-expand :uuid "defmacro")

0 commit comments

Comments
 (0)