mirror of
https://github.com/akelge/zsh
synced 2025-07-04 13:39:07 +00:00
Moved to Vundle
Adopted vim-templates plugin, instead of homegrown skeleton
This commit is contained in:
21
vim/oldStyle/templates/skeleton.c
Normal file
21
vim/oldStyle/templates/skeleton.c
Normal file
@ -0,0 +1,21 @@
|
||||
/*
|
||||
-*- coding: utf-8 -*-
|
||||
|
||||
Copyright by @@LONGNAME@@ <@@EMAIL@@>
|
||||
First version: @@crdate@@
|
||||
|
||||
Synopsis: @@DESCR@@
|
||||
|
||||
$Id$
|
||||
|
||||
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
return 0
|
||||
}
|
||||
|
||||
/* vim: set ts=4 sw=4 tw=0 ft=c : */
|
11
vim/oldStyle/templates/skeleton.pl
Normal file
11
vim/oldStyle/templates/skeleton.pl
Normal file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env perl
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright by @@LONGNAME@@ <@@EMAIL@@>
|
||||
# First version: @@crdate@@
|
||||
#
|
||||
# Synopsis: @@DESCR@@
|
||||
#
|
||||
# $Id$
|
||||
|
||||
# vim: set ts=4 sw=4 tw=0 ft=perl :
|
26
vim/oldStyle/templates/skeleton.py
Normal file
26
vim/oldStyle/templates/skeleton.py
Normal file
@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env python
|
||||
#-*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
|
||||
Copyright by @@LONGNAME@@ <@@EMAIL@@>
|
||||
First version: @@crdate@@
|
||||
|
||||
Synopsis: @@DESCR@@
|
||||
|
||||
$Id$
|
||||
|
||||
"""
|
||||
|
||||
__version__ ='0.1'
|
||||
__author__ ='@@LONGNAME@@ <@@EMAIL@@>'
|
||||
|
||||
|
||||
def main():
|
||||
pass
|
||||
|
||||
# If we have been called as 'python <script>' let's call main function
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
# vim: set ts=4 sw=4 tw=79 ft=python :
|
13
vim/oldStyle/templates/skeleton.sh
Normal file
13
vim/oldStyle/templates/skeleton.sh
Normal file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright by @@LONGNAME@@ <@@EMAIL@@>
|
||||
# First version: @@crdate@@
|
||||
#
|
||||
# Synopsis: @@DESCR@@
|
||||
#
|
||||
# $Id$
|
||||
|
||||
|
||||
|
||||
# vim: set ts=4 sw=4 tw=79 ft=sh :
|
Reference in New Issue
Block a user