SpaceVim & Vim 总结

2019-03-09  本文已影响0人  rEload
  1. 安装
curl -sLf https://spacevim.org/install.sh | bash
  1. 查看帮助
SPC h SPC   使用 fuzzy find 模块展示 SpaceVim 帮助文档章节目录
SPC h i 获取光标下单词的帮助信息
SPC h k 使用快捷键导航,展示 SpaceVim 所支持的前缀键
SPC h m 使用 Unite 浏览所有 man 文档
  1. 一些比较常用的快捷键
Leader [Num] 跳到编号Num的Buffer
s x Remove buffer, leave blank window
SPC j 0 go to the beginning of line (and set a mark at the previous location in the line)
SPC j $ go to the end of line (and set a mark at the previous location in the line)
  1. FuzzyFind
<Leader>f
  1. Buffer 切换
:b [n] = \[n] 
:bnext  :bprev
]b          [b
SPC b n 切换至下一个 buffer,排除特殊插件的 buffer
SPC b p 切换至前一个 buffer,排除特殊插件的 buffer

SPC <Tab>   切换至前一 buffer,可用于两个 buffer 来回切换 = Ctrl-^
SPC b Y 将整个 buffer 复制到剪切板

SPC b N h   在左侧新建一个窗口,并在其中新建空白 buffer
SPC b N j   在下方新建一个窗口,并在其中新建空白 buffer
SPC b N k   在上方新建一个窗口,并在其中新建空白 buffer
SPC b N l   在右侧新建一个窗口,并在其中新建空白 buffer
SPC b N n   在当前窗口新建一个空白 buffer

  1. 窗口管理
:h Ctrl-w 查看帮助
Ctrl-w - h,j,k,l = Ctrl - h,j,k,l
:tabnew = SPC w f = st
]w
[w
SPC w h,l,j,k 光标在窗口中移动
SPC w H,L,J,K 拖动窗口
SPC w d 删除一个窗口
SPC w D 选择一个窗口并关闭
SPC w m 最大化/最小化窗口
SPC w M 选择窗口进行替换
SPC w r 顺序切换窗口
SPC w R 逆序切换窗口
SPC w s / SPC w -   水平分割窗口 = sv
SPC w v / SPC w /   垂直分离窗口 = sg
SPC w V 垂直分离窗口,并切换至新窗口
SPC w w 切换至前一窗口
SPC w W 选择一个窗口
  1. Tab管理
SPC tt 打开标签管理器
SPC [Num] 跳到编号Num的窗口
SPC w F 新建一个新的标签页
:tabprev=[t
:tabnext=]t
SPC w o 按序切换标签页
  1. 删除空行

  2. 错误管理


9.复制粘贴

]p = p
[p = P
g p Select pasted text
SPC f y 复制当前文件,并且显示当前文件路径

10.编辑

[ e Move line up
] e Move line down
[ SPC   Insert space above
] SPC   Insert space below
  1. 跳转列表
:jumps  跳转表
SPC j 0 go to the beginning of line (and set a mark at the previous location in the line)
SPC j $ go to the end of line (and set a mark at the previous location in the line)
SPC j b = Ctrl-o
SPC j f = Ctrl-i
Ctrl- ]  跳到指定tag
Ctrl - o 转到跳转表里第 [count] 个较旧的光标位置
  1. 移动
SPC j j jump to a character in the buffer (easymotion)
SPC j J jump to a suite of two characters in the buffer (easymotion)
SPC j l jump to a line with avy (easymotion)
SPC j w jump to a word in the current buffer (easymotion)
SPC j u jump to a URL in the current window
  1. 阅读模式
SPC w c 进入阅读模式,浏览当前窗口 (需要 tools 模块)
SPC w C 选择某一个窗口,并且进入阅读模式 (需要 tools 模块)
  1. 查看可用模块
:SPLayer -l 
或者 
SPC h l
  1. 查看可用的插件
 <leader> l p
  1. 查看单词翻译
SPC x g 
or
Ctrl-_
goi  爱词霸搜索
  1. textobj
ae,ie buffer
al,il line
ai,ii indent
  1. 网页搜索
:OpenBrowser http://baidu.com
gob  百度搜索
gog  谷歌搜索
goi  爱词霸搜索

窗口管理器

  1. 查看 SpaceVim 函数定义
SPC h d k - SPC - b - n 
[SPC b n] is running :bnext, jump to next buffer
which is a vim build in command
It is bound to SPC b n, ] b,

Definition: ~/.SpaceVim/autoload/SpaceVim/mapping/space.vim:299
光标移动到 spac.vim gd 跳到文件
上一篇下一篇

猜你喜欢

热点阅读