鱼C论坛

 找回密码
 立即注册
查看: 2478|回复: 3

[已解决]如何使虚拟机中vim编译器在输入括号,引号时成对出现

[复制链接]
发表于 2019-12-31 00:09:42 | 显示全部楼层 |阅读模式
1鱼币
求大神解答
最佳答案
2019-12-31 00:09:43
本帖最后由 小无趣 于 2019-12-31 10:44 编辑

在vimrc中添加下面的代码,然后保存退出即可
:inoremap ( ()<ESC>i
:inoremap ) <c-r>=ClosePair(')')<CR>
:inoremap { {<CR>}<ESC>O
:inoremap } <c-r>=ClosePair('}')<CR>
:inoremap [ []<ESC>i
:inoremap ] <c-r>=ClosePair(']')<CR>
:inoremap " ""<ESC>i
:inoremap ' ''<ESC>i
function! ClosePair(char)
    if getline('.')[col('.') - 1] == a:char
                        return "\<Right>"
        else
                            return a:char
        endif
endfunction

最佳答案

查看完整内容

在vimrc中添加下面的代码,然后保存退出即可
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-12-31 00:09:43 | 显示全部楼层    本楼为最佳答案   
本帖最后由 小无趣 于 2019-12-31 10:44 编辑

在vimrc中添加下面的代码,然后保存退出即可
:inoremap ( ()<ESC>i
:inoremap ) <c-r>=ClosePair(')')<CR>
:inoremap { {<CR>}<ESC>O
:inoremap } <c-r>=ClosePair('}')<CR>
:inoremap [ []<ESC>i
:inoremap ] <c-r>=ClosePair(']')<CR>
:inoremap " ""<ESC>i
:inoremap ' ''<ESC>i
function! ClosePair(char)
    if getline('.')[col('.') - 1] == a:char
                        return "\<Right>"
        else
                            return a:char
        endif
endfunction
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-12-31 01:12:09 | 显示全部楼层
请打开百度,然后在哪个框框中输入“vim括号补全”,然后回车
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2019-12-31 10:20:37 | 显示全部楼层
那个代码在哪输入
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 15:45

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表