/usr/share/vim/vim91
NameSizeModeActions
autoload/-0755rm
colors/-0755rm
compiler/-0755rm
doc/-0755rm
ftplugin/-0755rm
import/-0755rm
indent/-0755rm
keymap/-0755rm
lang/-0755rm
macros/-0755rm
pack/-0755rm
plugin/-0755rm
print/-0755rm
spell/-0755rm
syntax/-0755rm
tutor/-0755rm
bugreport.vim19940644editdlrm
debian.vim18040644editdlrm
defaults.vim48570644editdlrm
delmenu.vim12750644editdlrm
evim.vim22840644editdlrm
filetype.vim784830644editdlrm
ftoff.vim3460644editdlrm
ftplugin.vim12000644editdlrm
ftplugof.vim4190644editdlrm
gvimrc_example.vim17070644editdlrm
indent.vim8200644editdlrm
indoff.vim3480644editdlrm
menu.vim421430644editdlrm
mswin.vim34960644editdlrm
optwin.vim690000644editdlrm
scripts.vim8660644editdlrm
synmenu.vim403380644editdlrm
vimrc_example.vim14350644editdlrm
Edit: /usr/share/vim/vim91/mswin.vim (3496B)
" Set options and add mapping such that Vim behaves a lot like MS-Windows " " Maintainer: The Vim Project " Last Change: 2023 Aug 10 " Former Maintainer: Bram Moolenaar " Bail out if this isn't wanted. 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 d if has("clipboard") " CTRL-X and SHIFT-Del are Cut vnoremap "+x vnoremap "+x " CTRL-C and CTRL-Insert are Copy vnoremap "+y vnoremap "+y " CTRL-V and SHIFT-Insert are Paste map "+gP map "+gP cmap + cmap + endif " 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. if 1 exe 'inoremap