dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit eb83db2c78a0fec74955d470a67a8aa909eb1b84
parent 274c27355de4482679d6dd9fb9557393d69f8c07
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Fri, 21 Feb 2020 23:23:56 +0100

vim: snippet for py codeblock in markdown

Former-commit-id: 5300fda1f762a7afdc7c122614f6cc099282b7d3
Diffstat:
Mvim/ultisnips/markdown.snippets | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/vim/ultisnips/markdown.snippets b/vim/ultisnips/markdown.snippets @@ -28,3 +28,12 @@ snippet video "MP4 Video" b </video> $0 endsnippet + +snippet `py "Python fenced block" b + +\`\`\`python +$1 +\`\`\` + +$0 +endsnippet