From b1e34436bb91567d01edcee9ff1b396d283965d6 Mon Sep 17 00:00:00 2001 From: Sparadox Date: Sun, 25 Oct 2015 18:03:52 +0100 Subject: [PATCH] =?UTF-8?q?[bugfix]=20=20conflict=20with=20the=20"?= =?UTF-8?q?=C3=A9"=20character?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Somehow, the bug declared in this issue has been unfixed. On my French keyboard, typing on the `é` key inserts `\item`. The mapping causing this bug to happen has been removed. --- autoload/vimtex/imaps.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/autoload/vimtex/imaps.vim b/autoload/vimtex/imaps.vim index 7d77b8a..dc6d6d8 100644 --- a/autoload/vimtex/imaps.vim +++ b/autoload/vimtex/imaps.vim @@ -131,7 +131,6 @@ function! s:default_maps() " {{{1 " Return default snippet list including list of simple maps return snippets + [ \ { 'lhs_rhs' : ['...', '\dots'], 'leader' : '' }, - \ { 'lhs_rhs' : ['', '\item '], 'leader' : '' }, \ { 'lhs_rhs' : ['0', '\emptyset'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['6', '\partial'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['8', '\infty'], 'wrapper' : 's:wrap_math'},