mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
updated for version 7.0c03
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
" Vim script for Evim key bindings
|
||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||
" Last Change: 2002 Mar 04
|
||||
" Last Change: 2006 Mar 29
|
||||
|
||||
" Don't use Vi-compatible mode.
|
||||
set nocompatible
|
||||
@ -15,8 +15,8 @@ set insertmode
|
||||
set hidden
|
||||
|
||||
" Make cursor keys ignore wrapping
|
||||
inoremap <Down> <C-O>gj
|
||||
inoremap <Up> <C-O>gk
|
||||
inoremap <Down> <C-R>=pumvisible() ? "\<lt>Down>" : "\<lt>C-O>gj"<CR>
|
||||
inoremap <Up> <C-R>=pumvisible() ? "\<lt>Up>" : "\<lt>C-O>gk"<CR>
|
||||
|
||||
" CTRL-F does Find dialog instead of page forward
|
||||
noremap <C-F> :promptfind<CR>
|
||||
|
Reference in New Issue
Block a user