removed: snippets for md headings

This commit is contained in:
quenousimporte 2023-05-02 15:57:15 +02:00
parent 9fcb32793d
commit ce39e4808e
1 changed files with 0 additions and 15 deletions

15
main.js
View File

@ -1138,21 +1138,6 @@ function initsnippets()
});
}
});
// md headings
for (var i = 1; i <= 3; i++)
{
if (!snippets.find(s => s.command == "/" + i))
{
snippets.push(
{
command: "/" + i,
hint: "Heading " + i,
insert: "#".repeat(i) + " ",
cursor: 0
});
}
}
}
function initvault()