aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mappings.vim4
1 files changed, 0 insertions, 4 deletions
diff --git a/mappings.vim b/mappings.vim
index 4d0e092..26bb3f3 100644
--- a/mappings.vim
+++ b/mappings.vim
@@ -110,10 +110,6 @@ inoremap <expr> <esc> ((pumvisible())?("\<C-e>"):("\<esc>"))
inoremap <expr> <tab> pumvisible() ? "\<c-n>" : "\<tab>"
inoremap <expr> <s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
-" Use <c-d> and <c-u> to scroll the completion menu.
-inoremap <expr> <C-d> pumvisible() ? "\<PageDown>" : "\<C-d>"
-inoremap <expr> <C-u> pumvisible() ? "\<PageUp>" : "\<C-u>"
-
" Edit and reload init.vim quickly
nnoremap <silent> <leader>ev :<C-U>tabnew $MYVIMRC <bar> tcd %:h<cr>
nnoremap <silent> <leader>sv :<C-U>silent update $MYVIMRC <bar> source $MYVIMRC <bar>