delete old unused files

This commit is contained in:
Stefan Liebl 2024-05-16 15:17:03 +02:00
parent de26f7c44d
commit 7efb40288d
19 changed files with 0 additions and 1877 deletions

View File

@ -1,57 +0,0 @@
" local syntax file - set colors on a per-machine basis:
" vim: tw=0 ts=4 sw=4
" Vim color file
" Maintainer: Ron Aaron <ronaharon@yahoo.com>
" Last Change: 2003 May 02
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "Carsten"
hi Comment term=bold ctermfg=darkgreen guifg=darkgreen
hi Normal guifg=black guibg=white
hi Constant term=underline ctermfg=Magenta guifg=Magenta
hi Special term=bold ctermfg=Magenta guifg=Magenta
hi Identifier term=underline ctermfg=Blue guifg=Blue
hi Statement term=bold ctermfg=DarkRed gui=NONE guifg=Brown
hi PreProc term=underline ctermfg=Magenta guifg=Purple
hi Type term=underline ctermfg=blue gui=NONE guifg=blue
hi Visual term=reverse ctermfg=Yellow ctermbg=Red gui=NONE guifg=Black guibg=Yellow
hi Search term=reverse ctermfg=Black ctermbg=Cyan gui=NONE guifg=Black guibg=Cyan
hi Tag term=bold ctermfg=DarkGreen guifg=DarkGreen
hi Error term=reverse ctermfg=15 ctermbg=9 guibg=Red guifg=White
hi Todo term=standout ctermbg=Yellow ctermfg=Black guifg=Blue guibg=Yellow
hi NonText term=bold ctermfg=black guifg=#C7C7C7
hi StatusLine term=bold,reverse cterm=NONE ctermfg=Yellow ctermbg=DarkGray gui=NONE guifg=Yellow guibg=DarkGray
hi! link MoreMsg Comment
hi! link ErrorMsg Visual
hi! link WarningMsg ErrorMsg
hi! link Question Comment
hi! link SpecialKey NonText
hi link String Constant
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Function Identifier
hi link Conditional Statement
hi link Repeat Statement
hi link Label Statement
hi link Operator Statement
hi link Keyword Statement
hi link Exception Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link SpecialChar Special
hi link Delimiter Special
hi link SpecialComment Special
hi link Debug Special
hi link SpecialKey NonText

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,52 +0,0 @@
/*****************************************************************************
*
* FILENAME: %-r%-e
*
* AUTHOR: IST_LIEBL
*
* DESCRIPTION:
*
*
*
* HISTORY:
*
* %date IST_LIEBL
* created file
*
****************************************************************************/
/*----------------------------------------------------------------------------
* includes
*--------------------------------------------------------------------------*/
#include "stdtype.h" /* uint8, ... */
/*----------------------------------------------------------------------------
* defines
*--------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* constants
*--------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* variables
*--------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* public function prototypes
*--------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* privat function prototypes
*--------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* public functions
*--------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
* privat functions
*--------------------------------------------------------------------------*/
/* end of file: %-r%-e */
%line9%col5

View File

@ -1,28 +0,0 @@
/********************************************************************
* %filename
*--------------------------------------------------------------------
* Brief: Kurzbeschreibung
* Author: %author
* Date: %date
* Desc:
********************************************************************/
/****************************
* Includes
****************************/
#include "bmsservices.h"
/****************************
* Konstanten / Variablen
****************************/
/*******************************************************************
* Funktionsname
* ------------------------------------------------------------------
* Hier erfolgt lediglich eine Kurzbeschreibung der Funktion.
* Eine dokumentationstaugliche Beschreibung(doxygen) der Funktion
* gehört in den Header.
*******************************************************************/

View File

@ -1,19 +0,0 @@
/****************************************************************//*!
* \file %filename
* \brief Kurzbeschreibung
* \author %author
* \date %date
*
* Beschreibung
********************************************************************/
#ifndef DATEINAME_H
#define DATEINAME_H
/****************************
* Konstanten / Variablen
****************************/
#endif

View File

@ -1,43 +0,0 @@
/********************************************************************
* %filename
*------------------------------------------------------------------*/
/*! \file %filename
* \brief Kurzbeschreibung
* \author %author
* \date %date
********************************************************************/
sg_funktion FUNKTIONSNAME
{
fkt_bezeichner FUNKTIONSNAME
{
deutsch "Eine tolle Funktionsbeschreibung";
}
/****************************************************************
* Referenzen
****************************************************************/
/****************************************************************
* RAM-Größen
* ---------------------------------------------------------------
* Info: RaMBit sind mittels Trennzeichen (1) zu trennen.
****************************************************************/
/****************************************************************
* Kennwerte
****************************************************************/
/****************************************************************
* Kennlinien
****************************************************************/
/****************************************************************
* Kennfelder
****************************************************************/
}
// (1) /*----------------------------------------------*/

View File

@ -1,10 +0,0 @@
/*************************************************************************
* FUNCTION:
*
* PARAMETERS:
*
* DESCRIPTION:
*
* RETURNS:
*
************************************************************************/

View File

@ -1,8 +0,0 @@
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>

View File

@ -1,13 +0,0 @@
@echo off
set a=%1
set b=%2
:: remove ""
set a=%a:"=%
set b=%b:"=%
:: escape space
set a=%a: =\ %
set b=%b: =\ %
echo on
"c:\Program Files (x86)\vim\vim73\gvim.exe" -c "DirDiff %a% %b%"

Binary file not shown.

Binary file not shown.

View File

@ -1,17 +0,0 @@
@echo off
setlocal
set vimdir=%~dp0..\..\..
set vimprg=%vimdir%\vim74\gvim.exe
set vimscript=%~dp0gvimmerge.vim
set base=%1
set mine=%2
set theirs=%3
set merged=%4
if not exist %vimprg% (
echo gvim.exe nicht gefunden
)
set cmd=%vimprg% -f -R %base% %mine% %theirs% %merged% -S %vimscript%
echo %cmd%
%cmd%

View File

@ -1,29 +0,0 @@
function s:OpenDiffTab(left, right)
tabnew
execute 'buffer' a:left
diffthis
execute 'rightbelow vertical sbuffer' a:right
diffthis
endfunction
function s:OpenMergeTabs()
set columns=200
call s:OpenDiffTab(2, 4)
call s:FixLineendings()
setlocal noreadonly modifiable
call s:OpenDiffTab(1, 4)
call s:OpenDiffTab(3, 4)
call s:OpenDiffTab(1, 2)
call s:OpenDiffTab(1, 3)
call s:OpenDiffTab(2, 3)
tabfirst
tabclose
" turn off line formatting
setlocal formatoptions=
" set search pattern to conflict markers
let @/ = "[<>=]\\{7}"
" set last command to 'save and close'
call histadd('cmd', 'w | qa')
endfunction
call s:OpenMergeTabs()

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,2 +0,0 @@
@rem redirect stderr to stdout
@%* 2>&1

Binary file not shown.