1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Fix for broken cursor keys in terminal after delimitMate plugin upgrade

(needs modification of delimitMate script itself)
This commit is contained in:
2010-06-28 06:16:38 +02:00
parent 711eaed286
commit c9df35cf99

View File

@@ -648,7 +648,7 @@ function! delimitMate#ExtraMappings() "{{{
"the following simply creates an ambiguous mapping so vim fully
"processes the escape sequence for terminal keys, see 'ttimeout' for a
"rough explanation, this just forces it to work
if &term[:4] == "xterm"
if &term[:4] != "builtin_gui"
inoremap <silent> <C-[>OC <RIGHT>
endif
endfunction "}}}