1
0
mirror of https://github.com/akelge/zsh synced 2025-08-18 15:19:04 +00:00

Initial import

This commit is contained in:
2008-10-09 16:15:16 +00:00
parent b68c98a6f5
commit 2475eced60
13 changed files with 814 additions and 0 deletions

19
vim/templates/skeleton.c Normal file
View File

@ -0,0 +1,19 @@
/*
-*- coding: latin-1 -*-
Copyright by Andrea Mistrali <am@am.cx>.
First version: <crdate>
Last modified: 06:Apr:2007 10:55
Synopsis: <description>
$Id: skeleton.c,v 1.2 2007-04-06 08:56:27 andre Exp $
*/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
return 0
}

10
vim/templates/skeleton.pl Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env perl
# -*- coding: latin-1 -*-
# Copyright by Andrea Mistrali <am@am.cx>.
# First version: <crdate>
# Last modified: 06:Apr:2007 10:55
#
# Synopsis: <description>
#
# $Id: skeleton.pl,v 1.2 2007-04-06 08:56:27 andre Exp $

25
vim/templates/skeleton.py Normal file
View File

@ -0,0 +1,25 @@
#!/usr/bin/env python
#-*- coding: latin-1 -*-
"""
Copyright by Andrea Mistrali <am@am.cx>.
First version: <crdate>
Last modified: 06:Apr:2007 10:56
Synopsis: <description>
$Id: skeleton.py,v 1.2 2007-04-06 08:56:27 andre Exp $
"""
__version__ ='0.1'
__author__ ='Andrea Mistrali <am@am.cx>'
def main():
pass
# If we have been called as 'python <script>' let's call main function
if __name__ == "__main__":
main()

10
vim/templates/skeleton.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/sh
# -*- coding: latin-1 -*-
# Copyright by Andrea Mistrali <am@am.cx>.
# First version: <crdate>
# Last modified: 06:Apr:2007 10:56
#
# Synopsis: <description>
#
# $Id: skeleton.sh,v 1.2 2007-04-06 08:56:27 andre Exp $