From a3f448f4ac710258ec7d4f6f7e6f73c4dd3857b0 Mon Sep 17 00:00:00 2001 From: Takashi Tamura Date: Fri, 15 Nov 2019 15:25:39 +0900 Subject: [PATCH] add \bigl( and other commands. --- data/commands.json | 60 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/data/commands.json b/data/commands.json index f3dc73347..10155fdd4 100644 --- a/data/commands.json +++ b/data/commands.json @@ -20,6 +20,66 @@ "snippet":"left\\{${1}\\right\\\\}", "detail":"\\left\\{ ... \\right\\}" }, + "biglrparen":{ + "command":"bigl(", + "snippet":"bigl(${1}\\bigr)", + "detail":"\\bigl( ... \\bigr)" + }, + "biglrbrack":{ + "command":"bigl[", + "snippet":"bigl[${1}\\bigr]", + "detail":"\\bigl[ ... \\bigr]" + }, + "biglrcurly":{ + "command":"bigl\\{", + "snippet":"bigl\\{${1}\\bigr\\\\}", + "detail":"\\bigl\\{ ... \\bigr\\}" + }, + "Biglrparen":{ + "command":"Bigl(", + "snippet":"Bigl(${1}\\Bigr)", + "detail":"\\Bigl( ... \\Bigr)" + }, + "Biglrbrack":{ + "command":"Bigl[", + "snippet":"Bigl[${1}\\Bigr]", + "detail":"\\Bigl[ ... \\Bigr]" + }, + "Biglrcurly":{ + "command":"Bigl\\{", + "snippet":"Bigl\\{${1}\\Bigr\\\\}", + "detail":"\\Bigl\\{ ... \\Bigr\\}" + }, + "bigglrparen":{ + "command":"biggl(", + "snippet":"biggl(${1}\\biggr)", + "detail":"\\biggl( ... \\biggr)" + }, + "bigglrbrack":{ + "command":"biggl[", + "snippet":"biggl[${1}\\biggr]", + "detail":"\\biggl[ ... \\biggr]" + }, + "bigglrcurly":{ + "command":"biggl\\{", + "snippet":"biggl\\{${1}\\biggr\\\\}", + "detail":"\\biggl\\{ ... \\biggr\\}" + }, + "Bigglrparen":{ + "command":"Biggl(", + "snippet":"Biggl(${1}\\Biggr)", + "detail":"\\Biggl( ... \\Biggr)" + }, + "Bigglrbrack":{ + "command":"Biggl[", + "snippet":"Biggl[${1}\\Biggr]", + "detail":"\\Biggl[ ... \\Biggr]" + }, + "Bigglrcurly":{ + "command":"Biggl\\{", + "snippet":"Biggl\\{${1}\\Biggr\\\\}", + "detail":"\\Biggl\\{ ... \\Biggr\\}" + }, "frame":{ "command":"frame", "snippet":"begin{frame}\n\t\\frametitle{${1:}}\n\n\t$0\n\n\\end{frame}",