diff --git a/languages/pyflies.language-configuration.json b/languages/pyflies.language-configuration.json index 283d266..0de29d9 100644 --- a/languages/pyflies.language-configuration.json +++ b/languages/pyflies.language-configuration.json @@ -10,6 +10,7 @@ { "open": "(", "close": ")" }, { "open": "'", "close": "'", "notIn": ["string", "comment"] }, { "open": "\"", "close": "\"", "notIn": ["string"] }, + { "open": "\"\"\"", "close": "\"\"\"", "notIn": ["string", "comment"]}, { "open": "`", "close": "`", "notIn": ["string", "comment"] }, { "open": "/*", "close": " */", "notIn": ["string"] } ], diff --git a/snippets/pyflies-snippets.json b/snippets/pyflies-snippets.json index a9f063a..6c45518 100644 --- a/snippets/pyflies-snippets.json +++ b/snippets/pyflies-snippets.json @@ -2,12 +2,12 @@ "test": { "scope": "pyflies", "prefix": "test", - "body": "test ${1:name} {\n\n${0} | | |\n | --- | --- |\n | | |\n\n fix -> cross()\n exec-> circle(radius 20)\n}" + "body": "test ${1:name} {\n\n | ${0} | |\n | --- | --- |\n | | |\n\n fix -> cross()\n exec-> circle(radius 20)\n}" }, "repeat_with": { "scope": "pyflies", "prefix": "repeatwith", - "body": "repeat {\n ${1}\n}with\n${0}| | |\n| --- | --- |\n| | |\n" + "body": "repeat {\n ${1}\n}with\n| ${0} | |\n| --- | --- |\n| | |\n" } }