comparison runtime/mswin.vim @ 819:23f82b5d2814 v7.0c10

updated for version 7.0c10
author vimboss
date Wed, 05 Apr 2006 20:41:53 +0000
parents 4a79d6d376f0
children 11d40fc82f11
comparison
equal deleted inserted replaced
818:1f929f3ca806 819:23f82b5d2814
1 " Set options and add mapping such that Vim behaves a lot like MS-Windows 1 " Set options and add mapping such that Vim behaves a lot like MS-Windows
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last change: 2006 Mar 28 4 " Last change: 2006 Apr 02
5 5
6 " bail out if this isn't wanted (mrsvim.vim uses this). 6 " bail out if this isn't wanted (mrsvim.vim uses this).
7 if exists("g:skip_loading_mswin") && g:skip_loading_mswin 7 if exists("g:skip_loading_mswin") && g:skip_loading_mswin
8 finish 8 finish
9 endif 9 endif
81 " CTRL-A is Select all 81 " CTRL-A is Select all
82 noremap <C-A> gggH<C-O>G 82 noremap <C-A> gggH<C-O>G
83 inoremap <C-A> <C-O>gg<C-O>gH<C-O>G 83 inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
84 cnoremap <C-A> <C-C>gggH<C-O>G 84 cnoremap <C-A> <C-C>gggH<C-O>G
85 onoremap <C-A> <C-C>gggH<C-O>G 85 onoremap <C-A> <C-C>gggH<C-O>G
86 snoremap <C-A> <C-C>gggH<C-O>G
87 xnoremap <C-A> <C-C>ggVG
86 88
87 " CTRL-Tab is Next window 89 " CTRL-Tab is Next window
88 noremap <C-Tab> <C-W>w 90 noremap <C-Tab> <C-W>w
89 inoremap <C-Tab> <C-O><C-W>w 91 inoremap <C-Tab> <C-O><C-W>w
90 cnoremap <C-Tab> <C-C><C-W>w 92 cnoremap <C-Tab> <C-C><C-W>w