Mercurial > vim
annotate runtime/mswin.vim @ 11820:24a3bec6e317 v8.0.0790
patch 8.0.0790: MSVC compiler warning for strncpy in libvterm
commit https://github.com/vim/vim/commit/fa228f716a4b63bf508887a49ce56bf4c07364d3
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jul 28 14:19:19 2017 +0200
patch 8.0.0790: MSVC compiler warning for strncpy in libvterm
Problem: MSVC compiler warning for strncpy in libvterm.
Solution: Add a define to stop the warnings. (Mike Williams)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 28 Jul 2017 14:30:05 +0200 |
parents | 9130644aec5c |
children | 77960063e2e7 |
rev | line source |
---|---|
7 | 1 " Set options and add mapping such that Vim behaves a lot like MS-Windows |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
10863
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
4 " Last change: 2017 Feb 09 |
21 | 5 |
6 " bail out if this isn't wanted (mrsvim.vim uses this). | |
7 if exists("g:skip_loading_mswin") && g:skip_loading_mswin | |
8 finish | |
9 endif | |
7 | 10 |
11 " set the 'cpoptions' to its Vim default | |
12 if 1 " only do this when compiled with expression evaluation | |
13 let s:save_cpo = &cpoptions | |
14 endif | |
15 set cpo&vim | |
16 | |
17 " set 'selection', 'selectmode', 'mousemodel' and 'keymodel' for MS-Windows | |
18 behave mswin | |
19 | |
20 " backspace and cursor keys wrap to previous/next line | |
21 set backspace=indent,eol,start whichwrap+=<,>,[,] | |
22 | |
23 " backspace in Visual mode deletes selection | |
24 vnoremap <BS> d | |
25 | |
10863
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
26 if has("clipboard") |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
27 " CTRL-X and SHIFT-Del are Cut |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
28 vnoremap <C-X> "+x |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
29 vnoremap <S-Del> "+x |
7 | 30 |
10863
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
31 " CTRL-C and CTRL-Insert are Copy |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
32 vnoremap <C-C> "+y |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
33 vnoremap <C-Insert> "+y |
7 | 34 |
10863
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
35 " CTRL-V and SHIFT-Insert are Paste |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
36 map <C-V> "+gP |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
37 map <S-Insert> "+gP |
7 | 38 |
10863
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
39 cmap <C-V> <C-R>+ |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
40 cmap <S-Insert> <C-R>+ |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
41 endif |
7 | 42 |
43 " Pasting blockwise and linewise selections is not possible in Insert and | |
44 " Visual mode without the +virtualedit feature. They are pasted as if they | |
45 " were characterwise instead. | |
720 | 46 " Uses the paste.vim autoload script. |
3682 | 47 " Use CTRL-G u to have CTRL-Z only undo the paste. |
720 | 48 |
10863
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
49 if 1 |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
50 exe 'inoremap <script> <C-V> <C-G>u' . paste#paste_cmd['i'] |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
51 exe 'vnoremap <script> <C-V> ' . paste#paste_cmd['v'] |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
52 endif |
720 | 53 |
7 | 54 imap <S-Insert> <C-V> |
55 vmap <S-Insert> <C-V> | |
56 | |
57 " Use CTRL-Q to do what CTRL-V used to do | |
58 noremap <C-Q> <C-V> | |
59 | |
60 " Use CTRL-S for saving, also in Insert mode | |
61 noremap <C-S> :update<CR> | |
62 vnoremap <C-S> <C-C>:update<CR> | |
63 inoremap <C-S> <C-O>:update<CR> | |
64 | |
65 " For CTRL-V to work autoselect must be off. | |
66 " On Unix we have two selections, autoselect can be used. | |
67 if !has("unix") | |
68 set guioptions-=a | |
69 endif | |
70 | |
71 " CTRL-Z is Undo; not in cmdline though | |
72 noremap <C-Z> u | |
73 inoremap <C-Z> <C-O>u | |
74 | |
75 " CTRL-Y is Redo (although not repeat); not in cmdline though | |
76 noremap <C-Y> <C-R> | |
77 inoremap <C-Y> <C-O><C-R> | |
78 | |
79 " Alt-Space is System menu | |
80 if has("gui") | |
81 noremap <M-Space> :simalt ~<CR> | |
82 inoremap <M-Space> <C-O>:simalt ~<CR> | |
83 cnoremap <M-Space> <C-C>:simalt ~<CR> | |
84 endif | |
85 | |
86 " CTRL-A is Select all | |
87 noremap <C-A> gggH<C-O>G | |
88 inoremap <C-A> <C-O>gg<C-O>gH<C-O>G | |
89 cnoremap <C-A> <C-C>gggH<C-O>G | |
816 | 90 onoremap <C-A> <C-C>gggH<C-O>G |
819 | 91 snoremap <C-A> <C-C>gggH<C-O>G |
92 xnoremap <C-A> <C-C>ggVG | |
7 | 93 |
94 " CTRL-Tab is Next window | |
95 noremap <C-Tab> <C-W>w | |
96 inoremap <C-Tab> <C-O><C-W>w | |
97 cnoremap <C-Tab> <C-C><C-W>w | |
816 | 98 onoremap <C-Tab> <C-C><C-W>w |
7 | 99 |
100 " CTRL-F4 is Close window | |
101 noremap <C-F4> <C-W>c | |
102 inoremap <C-F4> <C-O><C-W>c | |
103 cnoremap <C-F4> <C-C><C-W>c | |
816 | 104 onoremap <C-F4> <C-C><C-W>c |
7 | 105 |
10863
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
106 if has("gui") |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
107 " CTRL-F is the search dialog |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
108 noremap <C-F> :promptfind<CR> |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
109 inoremap <C-F> <C-\><C-O>:promptfind<CR> |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
110 cnoremap <C-F> <C-\><C-C>:promptfind<CR> |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
111 |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
112 " CTRL-H is the replace dialog |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
113 noremap <C-H> :promptrepl<CR> |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
114 inoremap <C-H> <C-\><C-O>:promptrepl<CR> |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
115 cnoremap <C-H> <C-\><C-C>:promptrepl<CR> |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
116 endif |
9130644aec5c
patch 8.0.0321: errors when trying to use scripts in tiny version
Christian Brabandt <cb@256bit.org>
parents:
3713
diff
changeset
|
117 |
7 | 118 " restore 'cpoptions' |
119 set cpo& | |
120 if 1 | |
121 let &cpoptions = s:save_cpo | |
122 unlet s:save_cpo | |
123 endif |