blob: 3c10c0a6d8070097aece42b691769cf11b4ecfff [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Set options and add mapping such that Vim behaves a lot like MS-Windows
2"
Christian Brabandte978b452023-08-13 10:33:05 +02003" Maintainer: The Vim Project <https://github.com/vim/vim>
Shixian Lid9ebd462024-03-03 23:41:46 +08004" Last Change: 2024 Mar 3
Christian Brabandte978b452023-08-13 10:33:05 +02005" Former Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaar269ec652004-07-29 08:43:53 +00006
Bram Moolenaard47d5222018-12-09 20:43:55 +01007" Bail out if this isn't wanted.
Bram Moolenaar269ec652004-07-29 08:43:53 +00008if exists("g:skip_loading_mswin") && g:skip_loading_mswin
9 finish
10endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011
12" set the 'cpoptions' to its Vim default
13if 1 " only do this when compiled with expression evaluation
14 let s:save_cpo = &cpoptions
15endif
16set cpo&vim
17
18" set 'selection', 'selectmode', 'mousemodel' and 'keymodel' for MS-Windows
19behave mswin
20
21" backspace and cursor keys wrap to previous/next line
22set backspace=indent,eol,start whichwrap+=<,>,[,]
23
24" backspace in Visual mode deletes selection
25vnoremap <BS> d
26
Shixian Lid9ebd462024-03-03 23:41:46 +080027if has("clipboard_working")
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +010028 " CTRL-X and SHIFT-Del are Cut
29 vnoremap <C-X> "+x
30 vnoremap <S-Del> "+x
Bram Moolenaar071d4272004-06-13 20:20:40 +000031
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +010032 " CTRL-C and CTRL-Insert are Copy
33 vnoremap <C-C> "+y
34 vnoremap <C-Insert> "+y
Bram Moolenaar071d4272004-06-13 20:20:40 +000035
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +010036 " CTRL-V and SHIFT-Insert are Paste
37 map <C-V> "+gP
38 map <S-Insert> "+gP
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +010040 cmap <C-V> <C-R>+
41 cmap <S-Insert> <C-R>+
Shixian Lid9ebd462024-03-03 23:41:46 +080042else
43 " Use unnamed register while clipboard not exist
44
45 " CTRL-X and SHIFT-Del are Cut
46 vnoremap <C-X> x
47 vnoremap <S-Del> x
48
49 " CTRL-C and CTRL-Insert are Copy
50 vnoremap <C-C> y
51 vnoremap <C-Insert> y
52
53 " CTRL-V and SHIFT-Insert are Paste
54 noremap <C-V> gP
55 noremap <S-Insert> gP
56
57 inoremap <C-V> <C-R>"
58 inoremap <S-Insert> <C-R>"
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +010059endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
61" Pasting blockwise and linewise selections is not possible in Insert and
62" Visual mode without the +virtualedit feature. They are pasted as if they
63" were characterwise instead.
Bram Moolenaar1056d982006-03-09 22:37:52 +000064" Uses the paste.vim autoload script.
Bram Moolenaar30b65812012-07-12 22:01:11 +020065" Use CTRL-G u to have CTRL-Z only undo the paste.
Bram Moolenaar1056d982006-03-09 22:37:52 +000066
Shixian Lid9ebd462024-03-03 23:41:46 +080067if has("clipboard_working")
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +010068 exe 'inoremap <script> <C-V> <C-G>u' . paste#paste_cmd['i']
69 exe 'vnoremap <script> <C-V> ' . paste#paste_cmd['v']
70endif
Bram Moolenaar1056d982006-03-09 22:37:52 +000071
Bram Moolenaar071d4272004-06-13 20:20:40 +000072imap <S-Insert> <C-V>
73vmap <S-Insert> <C-V>
74
75" Use CTRL-Q to do what CTRL-V used to do
76noremap <C-Q> <C-V>
77
Bram Moolenaara9604e62018-07-21 05:56:22 +020078" Use CTRL-S for saving, also in Insert mode (<C-O> doesn't work well when
79" using completions).
Bram Moolenaar071d4272004-06-13 20:20:40 +000080noremap <C-S> :update<CR>
81vnoremap <C-S> <C-C>:update<CR>
Bram Moolenaara9604e62018-07-21 05:56:22 +020082inoremap <C-S> <Esc>:update<CR>gi
Bram Moolenaar071d4272004-06-13 20:20:40 +000083
84" For CTRL-V to work autoselect must be off.
85" On Unix we have two selections, autoselect can be used.
86if !has("unix")
87 set guioptions-=a
88endif
89
90" CTRL-Z is Undo; not in cmdline though
91noremap <C-Z> u
92inoremap <C-Z> <C-O>u
93
94" CTRL-Y is Redo (although not repeat); not in cmdline though
95noremap <C-Y> <C-R>
96inoremap <C-Y> <C-O><C-R>
97
98" Alt-Space is System menu
99if has("gui")
100 noremap <M-Space> :simalt ~<CR>
101 inoremap <M-Space> <C-O>:simalt ~<CR>
102 cnoremap <M-Space> <C-C>:simalt ~<CR>
103endif
104
105" CTRL-A is Select all
106noremap <C-A> gggH<C-O>G
107inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
108cnoremap <C-A> <C-C>gggH<C-O>G
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000109onoremap <C-A> <C-C>gggH<C-O>G
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000110snoremap <C-A> <C-C>gggH<C-O>G
111xnoremap <C-A> <C-C>ggVG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112
113" CTRL-Tab is Next window
114noremap <C-Tab> <C-W>w
115inoremap <C-Tab> <C-O><C-W>w
116cnoremap <C-Tab> <C-C><C-W>w
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000117onoremap <C-Tab> <C-C><C-W>w
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118
119" CTRL-F4 is Close window
120noremap <C-F4> <C-W>c
121inoremap <C-F4> <C-O><C-W>c
122cnoremap <C-F4> <C-C><C-W>c
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000123onoremap <C-F4> <C-C><C-W>c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +0100125if has("gui")
126 " CTRL-F is the search dialog
Bram Moolenaarc3fdf7f2017-10-28 18:36:48 +0200127 noremap <expr> <C-F> has("gui_running") ? ":promptfind\<CR>" : "/"
128 inoremap <expr> <C-F> has("gui_running") ? "\<C-\>\<C-O>:promptfind\<CR>" : "\<C-\>\<C-O>/"
129 cnoremap <expr> <C-F> has("gui_running") ? "\<C-\>\<C-C>:promptfind\<CR>" : "\<C-\>\<C-O>/"
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +0100130
Bram Moolenaarc3fdf7f2017-10-28 18:36:48 +0200131 " CTRL-H is the replace dialog,
132 " but in console, it might be backspace, so don't map it there
133 nnoremap <expr> <C-H> has("gui_running") ? ":promptrepl\<CR>" : "\<C-H>"
134 inoremap <expr> <C-H> has("gui_running") ? "\<C-\>\<C-O>:promptrepl\<CR>" : "\<C-H>"
135 cnoremap <expr> <C-H> has("gui_running") ? "\<C-\>\<C-C>:promptrepl\<CR>" : "\<C-H>"
Bram Moolenaar8cc2a9c2017-02-09 20:22:30 +0100136endif
137
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138" restore 'cpoptions'
139set cpo&
140if 1
141 let &cpoptions = s:save_cpo
142 unlet s:save_cpo
143endif