mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
16 lines
205 B
Text
16 lines
205 B
Text
priority -50
|
|
|
|
snippet #! "Shebang"
|
|
#!/usr/bin/env python
|
|
${1}
|
|
endsnippet
|
|
|
|
snippet ! "Shebang"
|
|
#!/bin/python
|
|
${1}
|
|
endsnippet
|
|
|
|
snippet ifmain "If __main...."
|
|
if __name__ == "__main__":
|
|
${1:code}
|
|
endsnippet
|