繁体   English   中英

VIM特殊字符,不带Shift键

[英]VIM special chars without shift key

我编写了大量代码,并且每次需要特殊字符时都厌倦了按shift键。 而且由于我经常使用特殊字符,然后使用数字,所以我想反转它们的移位行为。

因此,如果我键入<4>,我将得到'$',而如果键入<shift> + <4>,我将得到'4',依此类推。 此映射应仅在插入模式下工作。

我试过了:

:set langmap 123...;!@#...,!@#...;123 "works only in normal-mode

:imap 4 $
:imap $ 4 "recursive mapping error

使用:ino ,它与:imap相同,不同之处在于它不会在替换的文本中查找地图。 (“ inoremap”的缩写)将解决递归问题。

有关更多信息,请参见此处: http : //vim.dindinx.net/orig/html/map.txt.php

或输入:h map以获得vim联机帮助(相同的内容,仅在vim内部)。

来自:help imap

If you want to exchange the meaning of two keys you should use the :noremap
command.  For example: >
   :noremap k j
   :noremap j k
This will exchange the cursor up and down commands.

With the normal :map command, when the 'remap' option is on, mapping takes
place until the text is found not to be a part of a {lhs}.  For example, if
you use: >
   :map x y
   :map y x
Vim will replace x with y, and then y with x, etc.  When this has happened
'maxmapdepth' times (default 1000), Vim will give the error message
"recursive mapping".

同样适用于imap (改为使用inoremap )。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM