1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 03:20:29 +01:00

Make python3 default shebang

This commit is contained in:
2023-10-04 15:39:47 +02:00
parent f94b8415c7
commit 2cc95674c2

View File

@@ -1,12 +1,10 @@
snippet #! snippet #!
#!/usr/bin/env python #!/usr/bin/env python3
snippet #!2 snippet #!2
#!/usr/bin/env python2 #!/usr/bin/env python2
# coding: utf-8 # coding: utf-8
snippet utf snippet utf
# coding: utf-8 # coding: utf-8
snippet #!3
#!/usr/bin/env python3
snippet dbg Python Debugger abbrv snippet dbg Python Debugger abbrv
__import__('pdb').set_trace() __import__('pdb').set_trace()
snippet ipdb ipdb abbrv snippet ipdb ipdb abbrv