merging vim folders

This commit is contained in:
Debucquoy
2023-11-02 10:11:39 +01:00
parent 4234763787
commit 7f78647c46
8 changed files with 58 additions and 0 deletions

View File

@ -1,2 +1,10 @@
extends jinja
extends html
snippet static "add a staic url_for" i
{{ url_for("static", $1) }} $0
endsnippet
snippet url "add a url_for inline" i
{{ url_for("$1") }} $0
endsnippet