vim/bundle/neorepl/plugin/neorepl.vim @ d9910af7d3ee
Fix lisp indent mapping
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 31 Aug 2015 12:47:50 +0000 |
parents |
75191cd2829e |
children |
855cbad5f857 |
" ============================================================================
" File: neorepl.vim
" Description: Send text from neovim buffers to neovim terminals.
" Maintainer: Steve Losh <steve@stevelosh.com>
" License: MIT/X11
" ============================================================================
" Init {{{
if !exists('g:neorepl_debug') && (exists('loaded_neorepl') || &cp)
finish
endif
let loaded_neorepl = 1
let g:neorepl_jobid = 0
"}}}
" Functions {{{
function! s:NeoRepl(command) " {{{
vnew
let result = termopen(a:command)
let g:neorepl_jobid = result
endfunction " }}}
function! NeoReplSendRaw(payload) " {{{
for line in (split(a:payload, '\n'))
call jobsend(g:neorepl_jobid, line . "\n")
sleep 2m " please kill me
endfor
endfunction " }}}
function! NeoReplSendSelection() " {{{
let old_z = @z
normal! gv"zy
call NeoReplSendRaw(@z . "\n")
let @z = old_z
endfunction " }}}
" }}}
" Command {{{
command! -range=0 -complete=shellcmd -nargs=1 NeoRepl call s:NeoRepl(<q-args>)
" }}}