python and nsis

This commit is contained in:
Andrea Crotti 2011-12-08 13:51:58 +00:00
parent 4164f0e881
commit cce8ae3b24
3 changed files with 14 additions and 1 deletions

7
nsis-mode/section Normal file
View File

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: section
# key: sec
# --
Section "${1:Program}"
$0
SectionEnd

View File

@ -2,4 +2,5 @@
# name: arg
# key: arg
# --
parser.add_argument('-$1', '--$2',$0)
parser.add_argument('-$1', '--$2',
$0)

View File

@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: arg_positional
# key: arg
# --
parser.add_argument('${1:varname}', $0)