From 7680c180050d54df6680eac087fe01d36cb5f099 Mon Sep 17 00:00:00 2001 From: krapjost Date: Wed, 17 Aug 2022 00:28:13 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c24fe1..3a59cdd 100644 --- a/README.md +++ b/README.md @@ -561,8 +561,7 @@ end vim.api.nvim_set_keymap('i', '', 'v:lua.smart_tab()', {expr = true, noremap = true}) ``` -only to find out that the mapping inserts `\` and `\` literally... -키매핑이 문자 그대로 `\`과 `\`를 입력하는 지 알아보기 위해서... +매핑이 문자 그대로 `\`과 `\`를 입력하는지 알아내기만 하면 됩니다. 키코드를 escape 할 수 있는 것은 빔스크립트의 기능입니다. 많은 프로그래밍 언어에서 흔히 볼 수 있는 `\r`, `\42`, `\x10` 같은 보통의 escape 시퀀스들를 제외하고, 빔스크립트의 `expr-quotes` (큰 따옴표로 둘러쌓인 문자열)은 빔 키코드들을 사람이 읽을 수 있게 표기할 수 있습니다.