From 167ad5341a07feb4e7f37a8b5fe919bd0e658929 Mon Sep 17 00:00:00 2001 From: Kien N Date: Fri, 3 Feb 2012 02:39:14 +0700 Subject: [PATCH] Disregard 'langmap' option Make typing in the ctrlp prompt work like typing in Insert mode for people with 'langmap' set. Close #125 --- autoload/ctrlp.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/ctrlp.vim b/autoload/ctrlp.vim index 128a818..996d7d3 100644 --- a/autoload/ctrlp.vim +++ b/autoload/ctrlp.vim @@ -116,7 +116,7 @@ fu! s:opts() " Global options let s:glbs = { 'magic': 1, 'to': 1, 'tm': 0, 'sb': 1, 'hls': 0, 'im': 0, \ 'report': 9999, 'sc': 0, 'ss': 0, 'siso': 0, 'mfd': 200, 'mouse': 'n', - \ 'gcr': 'a:blinkon0', 'ic': 1, 'scs': 1 } + \ 'gcr': 'a:blinkon0', 'ic': 1, 'scs': 1, 'lmap': '' } if s:lazy cal extend(s:glbs, { 'ut': ( s:lazy > 1 ? s:lazy : 250 ) }) en