是否可以将缓冲区的内容发送到正在运行的终端窗口。该窗口可以运行,例如用于python代码的REPL。
我的意思是VIM的新终端功能,而不是外部插件或以前的版本。
答案 0 :(得分:6)
您可以使用term_sendkeys()
将数据发送到终端缓冲区。但是有一些注意事项:
term_sendkeys()
的数据,这通常是通过yanking text 以下是一些代码简化并自动化发送到终端缓冲区工作流程。放入vimrc
文件或制作一个小插件。
augroup send_to_term
autocmd!
autocmd TerminalOpen * if &buftype ==# 'terminal' |
\ let t:send_to_term = +expand('<abuf>') |
\ endif
augroup END
function! s:op(type, ...)
let [sel, rv, rt] = [&selection, @@, getregtype('"')]
let &selection = "inclusive"
if a:0
silent exe "normal! `<" . a:type . "`>y"
elseif a:type == 'line'
silent exe "normal! '[V']y"
elseif a:type == 'block'
silent exe "normal! `[\<C-V>`]y"
else
silent exe "normal! `[v`]y"
endif
call s:send_to_term(@@)
let &selection = sel
call setreg('"', rv, rt)
endfunction
function! s:send_to_term(keys)
let bufnr = get(t:, 'send_to_term', 0)
if bufnr > 0 && bufexists(bufnr) && getbufvar(bufnr, '&buftype') ==# 'terminal'
let keys = substitute(a:keys, '\n$', '', '')
call term_sendkeys(bufnr, keys . "\<cr>")
echo "Sent " . len(keys) . " chars -> " . bufname(bufnr)
else
echom "Error: No terminal"
endif
endfunction
command! -range -bar SendToTerm call s:send_to_term(join(getline(<line1>, <line2>), "\n"))
nmap <script> <Plug>(send-to-term-line) :<c-u>SendToTerm<cr>
nmap <script> <Plug>(send-to-term) :<c-u>set opfunc=<SID>op<cr>g@
xmap <script> <Plug>(send-to-term) :<c-u>call <SID>op(visualmode(), 1)<cr>
您可以设置自己的映射。例如:
nmap yrr <Plug>(send-to-term-line)
nmap yr <Plug>(send-to-term)
xmap R <Plug>(send-to-term)
现在,您可以使用:[range]SendToTerm
将[range]
行发送到标签页中最后使用的终端缓冲区。您还可以使用yrr
发送一行,yr{motion}
发送{motion}
文本,或使用R
将可视选择的文本发送到终端缓冲区。注意:您必须事先在当前标签页中打开终端缓冲区。