上班摸鱼搞定了多tab的支持。欢迎star!
1
mikac 2018-06-19 20:38:37 +08:00
看起来听不错
|
2
maxxxxx OP @mikac vim 里面管理 terminal 没有其他编辑器好用,好在可定制性在那儿了,搞完确实方便多了,这个星期再把管理多个 terminal 的能力加上!
|
3
KentY 2018-06-19 22:51:59 +08:00 1
c-z & fg
|
5
mikac 2018-06-19 23:35:01 +08:00
@maxxxxx 其实也想说 ctrl-z & fg 很方便很实用的,当然你写的这个插件也适用一些人(喜欢平铺窗口),多种选择总是好的 :)
|
6
glues 2018-06-20 00:41:14 +08:00 via iPhone
不错
|
7
kran 2018-06-20 09:58:00 +08:00
建议针对 tab 打开终端。之前自己改的一个:
function! Term_toggle(height) if exists("t:term_win") && win_gotoid(t:term_win) let t:term_hight = winheight("") hide if exists("t:term_org_win") call win_gotoid(t:term_org_win) endif else let t:term_org_win = win_getid() botright new if exists("t:term_hight") exec "resize " . t:term_hight else exec "resize " . a:height endif try exec "buffer " . t:term_buf catch call termopen($SHELL, {"detach": 0}) let t:term_buf = bufnr("") endtry startinsert! let t:term_win = win_getid() endif endfunction |
9
maxxxxx OP 捞一下,支持了新的多 tab 功能。
|