We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 920eb83 commit 162713dCopy full SHA for 162713d
doom-snippets-lib.el
@@ -98,7 +98,7 @@ uuid/name/key/(absolute) filepath of the template you want to expand."
98
(yas-choose-keys-first nil))
99
(cl-loop for tpl in (yas--all-templates
100
(yas--get-snippet-tables mode))
101
- if (string= uuid
+ if (string= value
102
(pcase property
103
(:uuid (yas--template-uuid tpl))
104
(:name (yas--template-name tpl))
@@ -107,7 +107,7 @@ uuid/name/key/(absolute) filepath of the template you want to expand."
107
return tpl))))
108
(if snippet
109
(yas-expand-snippet snippet)
110
- (error "Couldn't find snippet" &optional ARGS))))
+ (error "Couldn't find %S snippet" value))))
111
112
(provide 'doom-snippets-lib)
113
;;; doom-snippets-lib.el ends here
0 commit comments