directory structure
This commit is contained in:
parent
0ce2bda366
commit
615f897310
47 changed files with 8100 additions and 0 deletions
19
UltiSnips/python.snippets
Normal file
19
UltiSnips/python.snippets
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
snippet qxconfig "qutebrowser xResources config"
|
||||
c.colors.messages.$1 = xresources['*${2:background}']$0
|
||||
endsnippet
|
||||
|
||||
snippet main "if __name__ == .."
|
||||
def main():
|
||||
$0
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
endsnippet
|
||||
|
||||
snippet ld "logger.debug()"
|
||||
logger.debug("$1".format($2))
|
||||
endsnippet
|
||||
|
||||
snippet li "logger.info()"
|
||||
logger.info("$1".format($2))
|
||||
endsnippet
|
||||
Loading…
Add table
Add a link
Reference in a new issue