Skip to content

Commit 33d47f3

Browse files
Merge pull request #1 from NotRexButCaesar/no-dots
No dots
2 parents caa758e + 2ef827e commit 33d47f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lua/luasnip-latex-snippets/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ M.setup_markdown = function()
124124
-- tex delimiters
125125
local normal_wA_tex = {
126126
parse_snippet({ trig = "mk", name = "Math" }, "$${1:${TM_SELECTED_TEXT}}$"),
127-
parse_snippet({ trig = "dm", name = "Block Math" }, "$$\n\t${1:${TM_SELECTED_TEXT}}\n.$$"),
127+
parse_snippet({ trig = "dm", name = "Block Math" }, "$$\n\t${1:${TM_SELECTED_TEXT}}\n$$"),
128128
}
129129
vim.list_extend(filtered, normal_wA_tex)
130130

lua/luasnip-latex-snippets/wA.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function M.retrieve(not_math)
1111

1212
return {
1313
parse_snippet({ trig = "mk", name = "Math" }, "\\( ${1:${TM_SELECTED_TEXT}} \\)$0"),
14-
parse_snippet({ trig = "dm", name = "Block Math" }, "\\[\n\t${1:${TM_SELECTED_TEXT}}\n.\\] $0"),
14+
parse_snippet({ trig = "dm", name = "Block Math" }, "\\[\n\t${1:${TM_SELECTED_TEXT}}\n\\] $0"),
1515
}
1616
end
1717

0 commit comments

Comments
 (0)