summaryrefslogtreecommitdiffstats
path: root/runtime/evim.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-29 21:18:24 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-29 21:18:24 +0000
commite2f98b95c8071f772695602cd4f714dc588eb8e7 (patch)
tree28442f952f7e5258e2addd8871a4a2930e768c0a /runtime/evim.vim
parent86ca6e3b8c9c5d909421eb5abc2d81e02d402b49 (diff)
updated for version 7.0c03v7.0c03
Diffstat (limited to 'runtime/evim.vim')
-rw-r--r--runtime/evim.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/evim.vim b/runtime/evim.vim
index c289e20fd4..754729048e 100644
--- a/runtime/evim.vim
+++ b/runtime/evim.vim
@@ -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>