.vim: Dammit

Forgot to trim .git information from plugins
This commit is contained in:
2017-08-16 14:37:46 -05:00
parent 85b63b8319
commit 58b1e98578
61 changed files with 3438 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
#! /bin/bash
#
# %FFILE%
# Copyright (C) %YEAR% %USER% <%MAIL%>
#
# Distributed under terms of the %LICENSE% license.
#
%HERE%

View File

@@ -0,0 +1,11 @@
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
#include "%FILE%.h"
%HERE%

View File

@@ -0,0 +1 @@
=template=.c

View File

@@ -0,0 +1 @@
=template=.c

View File

@@ -0,0 +1,13 @@
cmake_minimum_required (VERSION 2.8)
# projectname is the same as the main-executable
project(%HERE%%FDIR%)
add_definitions('-g')
add_definitions('-Wall')
#add_definitions('-std=c++11')
add_executable(${PROJECT_NAME} ${PROJECT_NAME}.cpp)
add_custom_target(${PROJECT_NAME}-symlink ALL ln --force -s ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME} ${CMAKE_SOURCE_DIR}/${PROJECT_NAME} DEPENDS ${PROJECT_NAME})
set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_SOURCE_DIR}/${PROJECT_NAME})

View File

@@ -0,0 +1,8 @@
###
# %FFILE%
# Copyright (C) %YEAR% %USER% <%MAIL%>
#
# Distributed under terms of the %LICENSE% license.
###
%HERE%

View File

@@ -0,0 +1 @@
=template=.c

View File

@@ -0,0 +1,12 @@
/*
* %FFILE%
* Copyright (C) %YEAR% %USER%
*
* Distributed under terms of the %LICENSE% license.
*/
body {
%HERE%background: white;
color: black;
}

View File

@@ -0,0 +1 @@
=template=.c

View File

@@ -0,0 +1,8 @@
//
// %FFILE%
// Copyright (C) %YEAR% %USER% <%MAIL%>
//
// Distributed under terms of the %LICENSE% license.
//
%HERE%

View File

@@ -0,0 +1,8 @@
!
! %FFILE%
! Copyright (C) %YEAR% %USER% <%MAIL%>
!
! Distributed under terms of the %LICENSE% license.
!
%HERE%

View File

@@ -0,0 +1,8 @@
!
! %FFILE%
! Copyright (C) %YEAR% %USER% <%MAIL%>
!
! Distributed under terms of the %LICENSE% license.
!
%HERE%

View File

@@ -0,0 +1,10 @@
//
// %FFILE%
// Copyright (C) %YEAR% %USER% <%MAIL%>
//
// Distributed under terms of the %LICENSE% license.
//
package main
%HERE%

View File

@@ -0,0 +1,13 @@
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
#ifndef %GUARD%
#define %GUARD%
%HERE%
#endif /* !%GUARD% */

View File

@@ -0,0 +1,12 @@
#! /usr/bin/env runhugs +l
--
-- %FFILE%
-- Copyright (C) %YEAR% %USER% <%MAIL%>
--
-- Distributed under terms of the %LICENSE% license.
--
module %FILE% where
%HERE%

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>%CLASS%</title>
</head>
<body>
%HERE%
</body>
</html>

View File

@@ -0,0 +1,16 @@
/* TEAM */
Your title: %USER%
Site: %MAIL%, link to a contact form, etc.
Twitter: your Twitter username.
Location: City, Country.
%HERE%
/* THANKS */
Name: name or url
/* SITE */
Last update: YYYY/MM/DD
Standards: HTML5, CSS3,..
Components: Modernizr, jQuery, etc.
Software: Software used for the development

View File

@@ -0,0 +1,14 @@
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
public class %FILE%
{
public %FILE%() {
%HERE%
}
}

View File

@@ -0,0 +1,8 @@
#=
%FILE%
Copyright © %YEAR% %USER% <%MAIL%>
Distributed under terms of the %LICENSE% license.
=#
%HERE%

View File

@@ -0,0 +1,11 @@
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
(function(){
'use strict';
%HERE%
})();

View File

@@ -0,0 +1,12 @@
<%@ page contentType="text/html;Charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib prefix="" tagdir="/WEB-INF/tags"%>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
%HERE%
</body>
</html>

View File

@@ -0,0 +1,21 @@
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
import React, { Component } from 'react'
class %FILE% extends Component {
constructor(props: any) {
super(props)
}
render() {
return (
%HERE%
)
}
}

View File

@@ -0,0 +1,4 @@
%FILE% by %USER%
%FDATE%
%HERE%

View File

@@ -0,0 +1,9 @@
#! /usr/bin/env lua
--
-- %FFILE%
-- Copyright (C) %YEAR% %USER% <%MAIL%>
--
-- Distributed under terms of the %LICENSE% license.
--
%HERE%

View File

@@ -0,0 +1 @@
=template=.c

View File

@@ -0,0 +1 @@
=template=Makefile

View File

@@ -0,0 +1,9 @@
(*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*)
let %HERE%

View File

@@ -0,0 +1 @@
=template=.m

View File

@@ -0,0 +1,12 @@
<?php
/**
* Short description for %FFILE%
*
* @package %FILE%
* @author %USER% <%MAIL%>
* @version 0.1
* @copyright (C) %YEAR% %USER% <%MAIL%>
* @license %LICENSE%
*/
%HERE%

View File

@@ -0,0 +1,16 @@
#! /usr/bin/env perl
#
# Short description for %FFILE%
#
# Author %USER% <%MAIL%>
# Version 0.1
# Copyright (C) %YEAR% %USER% <%MAIL%>
# Modified On %FDATE%
# Created %FDATE%
#
use strict;
use warnings;
%HERE%

View File

@@ -0,0 +1,48 @@
create or replace package %FILE%
is
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
procedure main (pv_param1 varchar2(50)
,pv_param2 varchar2(50));
end %FILE%
/
show errors
exit
create or replace package body %FILE%
is
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
procedure main (pv_param1 varchar2(50)
,pv_param2 varchar2(50))
is
begin
null;
exception
when others then
raise;
end main;
end %FILE%
/
show errors
exit

View File

@@ -0,0 +1,38 @@
package %FILE%;
#
# Short description for %FFILE%
#
# Author %USER% <%MAIL%>
# Version 0.1
# Copyright (C) %YEAR% %USER% <%MAIL%>
# Modified On %FDATE%
# Created %FDATE%
#
use strict;
use warnings;
our @ISA = qw(Exporter);
our %EXPORT_TAGS = ( 'all' => [ qw() ] );
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw();
our $VERSION = '1.00';
require Exporter;
use AutoLoader qw(AUTOLOAD);
sub new
{
my $class = shift;
my $arg = shift;
my $self = {};
%HERE%
bless($self, $class);
return $self;
}
1;
# __END__
# # Below is stub documentation for your module. You'd better edit it!

View File

@@ -0,0 +1,26 @@
PRO %FILE%
;+
; Name:
; %FILE%
; Purpose:
;
; Calling sequence:
; %FILE%
; Input:
;
; Output:
;
; Keywords:
;
; History:
;
; Author:
; Copyright © %YEAR% %USER% <%MAIL%>
; Distributed under terms of the %LICENSE% license.
;-
COMPILE_OPT IDL2 ;Set compile options
%HERE%
END

View File

@@ -0,0 +1,11 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © %YEAR% %USER% <%MAIL%>
#
# Distributed under terms of the %LICENSE% license.
"""
%HERE%
"""

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env ruby
#
# %FFILE%
# Copyright (C) %YEAR% %USER% <%MAIL%>
#
# Distributed under terms of the %LICENSE% license.
#
%HERE%

View File

@@ -0,0 +1,6 @@
#
# The Web Robots Pages (http://www.robotstxt.org/)
#
User-agent: *
Disallow:

View File

@@ -0,0 +1,17 @@
//
// %FFILE%
// Copyright (C) %YEAR% %USER% <%MAIL%>
// Distributed under terms of the %LICENSE% license.
//
%HERE%
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
}
}

View File

@@ -0,0 +1,10 @@
#! /bin/sh
#
# %FFILE%
# Copyright (C) %YEAR% %USER% <%MAIL%>
#
# Distributed under terms of the %LICENSE% license.
#
%HERE%

View File

@@ -0,0 +1,11 @@
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
select %HERE%
-- vim:et

View File

@@ -0,0 +1,17 @@
% vim:ft=tex:
%
\documentclass[12pt]{article}
\title{
%FILE%
}
\author{
%USER% --- \texttt{%MAIL%}
}
\begin{document}
\maketitle
%HERE%
\end{document}

View File

@@ -0,0 +1,7 @@
%FFILE%
:Author: %USER%
:Email: %MAIL%
:Date: %FDATE%
%HERE%

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<%FILE%>
%HERE%
</%FILE%>
<!-- vim:fenc=utf-8
-->

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
%FFILE%
Copyright (C) %YEAR% %USER% <%MAIL%>
Distributed under terms of the %LICENSE% license.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
%HERE%
</xsl:stylesheet>

View File

@@ -0,0 +1,8 @@
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
xmlns:i18n="http://namespaces.zope.org/i18n">
%HERE%
</configure>

View File

@@ -0,0 +1 @@
=template=.cmake

View File

@@ -0,0 +1 @@
=template=Makefile

View File

@@ -0,0 +1,11 @@
#
# %FFILE%
# %USER%, %FDATE%
#
all:
%HERE%@echo "%FFILE% needs your attention"
# vim:ft=make
#