summaryrefslogtreecommitdiffstats
path: root/vim/snippets/xs.snippets
blob: eada925f089797bc284d2c79299d057439182ec3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
snippet xs
	#include "EXTERN.h"
	#include "perl.h"
	#include "XSUB.h"

	MODULE = ${1:`matchstr(expand("%"), '^.*\ze\.xs')`}  PACKAGE = ${2:$1}

	PROTOTYPES: DISABLE


	${0}
snippet xsub
	${3:void}
	${1:name}(${2})
	  CODE:
		${0}