home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / mswin.vim < prev    next >
Text File  |  2003-08-12  |  3KB  |  107 lines

  1. " Set options and add mapping such that Vim behaves a lot like MS-Windows
  2. "
  3. " Maintainer:    Bram Moolenaar <Bram@vim.org>
  4. " Last change:    2003 May 17
  5.  
  6. " set the 'cpoptions' to its Vim default
  7. if 1    " only do this when compiled with expression evaluation
  8.   let s:save_cpo = &cpoptions
  9. endif
  10. set cpo&vim
  11.  
  12. " set 'selection', 'selectmode', 'mousemodel' and 'keymodel' for MS-Windows
  13. behave mswin
  14.  
  15. " backspace and cursor keys wrap to previous/next line
  16. set backspace=indent,eol,start whichwrap+=<,>,[,]
  17.  
  18. " backspace in Visual mode deletes selection
  19. vnoremap <BS> d
  20.  
  21. " CTRL-X and SHIFT-Del are Cut
  22. vnoremap <C-X> "+x
  23. vnoremap <S-Del> "+x
  24.  
  25. " CTRL-C and CTRL-Insert are Copy
  26. vnoremap <C-C> "+y
  27. vnoremap <C-Insert> "+y
  28.  
  29. " CTRL-V and SHIFT-Insert are Paste
  30. map <C-V>        "+gP
  31. map <S-Insert>        "+gP
  32.  
  33. cmap <C-V>        <C-R>+
  34. cmap <S-Insert>        <C-R>+
  35.  
  36. " Pasting blockwise and linewise selections is not possible in Insert and
  37. " Visual mode without the +virtualedit feature.  They are pasted as if they
  38. " were characterwise instead.
  39. if has("virtualedit")
  40.   nnoremap <silent> <SID>Paste :call <SID>Paste()<CR>
  41.   func! <SID>Paste()
  42.     let ove = &ve
  43.     set ve=all
  44.     normal `^"+gPi
  45.     let &ve = ove
  46.   endfunc
  47.   inoremap <script> <C-V>    x<BS><Esc><SID>Pastegi
  48.   vnoremap <script> <C-V>    "-c<Esc><SID>Paste
  49. else
  50.   nnoremap <silent> <SID>Paste    "=@+.'xy'<CR>gPFx"_2x
  51.   inoremap <script> <C-V>    x<Esc><SID>Paste"_s
  52.   vnoremap <script> <C-V>    "-c<Esc>gix<Esc><SID>Paste"_x
  53. endif
  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
  90.  
  91. " CTRL-Tab is Next window
  92. noremap <C-Tab> <C-W>w
  93. inoremap <C-Tab> <C-O><C-W>w
  94. cnoremap <C-Tab> <C-C><C-W>w
  95.  
  96. " CTRL-F4 is Close window
  97. noremap <C-F4> <C-W>c
  98. inoremap <C-F4> <C-O><C-W>c
  99. cnoremap <C-F4> <C-C><C-W>c
  100.  
  101. " restore 'cpoptions'
  102. set cpo&
  103. if 1
  104.   let &cpoptions = s:save_cpo
  105.   unlet s:save_cpo
  106. endif
  107.