From 3b89c686e6f36b495cdd923d37448a5f88b4fbc8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 20 Dec 2024 20:51:43 +0530 Subject: [PATCH] Remove spurious slash escaping in vimrc example --- docs/mapping.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/mapping.rst b/docs/mapping.rst index 817f149d86b..69c3840247f 100644 --- a/docs/mapping.rst +++ b/docs/mapping.rst @@ -201,8 +201,8 @@ In order to make this work, you need to configure your editor as show below: In :file:`~/.vimrc` add: .. code-block:: vim - let &t_ti = &t_ti . "\\033]1337;SetUserVar=in_editor=MQo\\007" - let &t_te = &t_te . "\\033]1337;SetUserVar=in_editor\\007" + let &t_ti = &t_ti . "\033]1337;SetUserVar=in_editor=MQo\007" + let &t_te = &t_te . "\033]1337;SetUserVar=in_editor\007" .. tab:: neovim