From c5f0409182bdb81d291588a1fe52d9e094a7081f Mon Sep 17 00:00:00 2001 From: Meng Zhuo Date: Tue, 4 Jun 2013 17:11:17 +0800 Subject: [PATCH] fix `**` conflict with `*`, triggered while typing `**` snippet will expand into `* *{e}*`. I change into `*&` user still don't have to release their Shift key --- snippets/rst.snippets | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snippets/rst.snippets b/snippets/rst.snippets index a6558f0..657d8b5 100644 --- a/snippets/rst.snippets +++ b/snippets/rst.snippets @@ -4,7 +4,7 @@ snippet : :${1:field name}: ${2:field body} snippet * *${1:Emphasis}* ${2} -snippet ** +snippet *& **${1:Strong emphasis}** ${2} snippet _ \`${1:hyperlink-name}\`_ @@ -62,8 +62,8 @@ snippet sid ${2} # CJK optimize, CJK has no space between charaters -snippet *c +snippet *! \ *${1:Emphasis}*\ ${2} -snippet **c +snippet *&! \ **${1:Strong emphasis}**\ ${2}