From 0bd0926b660fc5ee769eb6a7374aebd518278bc6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 8 Jan 2015 09:25:04 +0530 Subject: [PATCH] Default text for placeholders for builtin snippets --- src/calibre/gui2/tweak_book/editor/snippets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/gui2/tweak_book/editor/snippets.py b/src/calibre/gui2/tweak_book/editor/snippets.py index 127149194b..917df93404 100644 --- a/src/calibre/gui2/tweak_book/editor/snippets.py +++ b/src/calibre/gui2/tweak_book/editor/snippets.py @@ -42,17 +42,17 @@ builtin_snippets = { # {{{ snip_key('${2*}', + 'template': '${2*}', }, snip_key('$3', + 'template': '${2*:description}$3', }, snip_key('${3*}', + 'template': '<$1 class="${2:classname}">${3*}', }, } # }}}