branch: master commit 88b79505547be31f534a03a871ac98788e1455e3 Author: Noam Postavsky <npost...@users.sourceforge.net> Commit: Noam Postavsky <npost...@users.sourceforge.net>
Reduce `yas-new-snippet-default' * yasnippet.el (yas-new-snippet-default): Remove "require-final-newline: nil", it's redundant since `snippet-mode' already sets that. Also remove the direct-keybinding, since it's hardly ever used, and often the literal "# binding: direct-keybinding" ends up in actual snippets. --- yasnippet.el | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/yasnippet.el b/yasnippet.el index 6ada52e..69d6b26 100644 --- a/yasnippet.el +++ b/yasnippet.el @@ -202,10 +202,9 @@ created with `yas-new-snippet'. " (defvaralias 'yas/root-directory 'yas-snippet-dirs) (defcustom yas-new-snippet-default "\ -# -*- mode: snippet; require-final-newline: nil -*- +# -*- mode: snippet -*- # name: $1 -# key: ${2:${1:$(yas--key-from-desc yas-text)}}${3: -# binding: ${4:direct-keybinding}} +# key: ${2:${1:$(yas--key-from-desc yas-text)}} # -- $0" "Default snippet to use when creating a new snippet.