Vim is a text editor written by Bram Moolenaar and first released publicly in 1991. Based on the vi editor common to Unix-like systems, Vim is designed for use both from a command line interface and as a standalone application in a graphical user interface.
If working remotely Vim generated swap file. If you're sure that your work is safely storey you can get rid of the swapfiles with the following commands:
find.-name".*.swp"# find swap files
find.-name".*.swp"|xargsrm-f# find and delete
4-2 Play recording multiple times = number of times
Console
Execute a console command. Vim will be halted and the console from within Vim was opened will execute the program and go back to Vim after execution is complete.
set nocp
set autoindent
set backspace=2
set backup
set hidden
set history=500
set hlsearch
set incsearch
set listchars=precedes:$,extends:$,tab:>-,trail:.,eol:<
" Line numbers "
set number
set printheader=%<%F%=Seite\ %N
set ruler
set shiftwidth=2
set showcmd
set showmatch
set showmode
set sidescroll=5
set smartcase
set smartindent
set softtabstop=2
set spelllang=de,en
set spellsuggest=double,10
set statusline=%<%f\ %h%m%r%=%([%{Tlist_Get_Tagname_By_Line()}]%)\ #%n\ %-14.(%l/%L,%c%V%)\ %P
set tabstop=2
" set textwidth=75 "
set title
set wildmenu
set wildmode=list:longest,full
" Use Windows Clipboard "
if has("win32")
set clipboard=unnamed
endif
" Syntax Highlighting "
syntax on
" Filename Detection
filetype on
filetype indent on
filetype plugin on
" Folding
"syntax sync fromstart
set foldmethod=indent
set nofoldenable