Though I'm no Vim expert, I've been scratching an itch by working on a rough Vim equivalent of TextMate's ⌘R functionality to run Ruby code from a buffer and display the output.

The script currently just opens a new window (split) with :new and puts the output there. If you run it multiple times, it opens multiple windows. Ideally, I'd like it to reuse the same window within each tab page, much like :help does.

I've looked but haven't found a way to achieve this. Any pointers?

link|improve this question

25% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can create a scratch buffer with a name, so that on subsequent calls you can check to see if that buffer is already open (and if so reuse it) or you need a new one. Something like this:

function! Output()
    let winnr = bufwinnr('^_output$')
    if ( winnr >= 0 )
        execute winnr . 'wincmd w'
        execute 'normal ggdG'
    else
        new _output
        setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile nowrap
    endif
    silent! r! ls
endfunction
link|improve this answer
1  
After creating a new buffer you should just save its number: let s:outputbufnr=bufnr('%') and then check it with if bufexists(s:outputbufnr)..else..endif. – ZyX Mar 14 '11 at 21:21
Thanks! This (and ZyX's comment) pointed me in the right direction: github.com/henrik/dotfiles/commit/… One difference is that I use t:varname to make it tab page local. – Henrik N Mar 15 '11 at 7:34
feedback

I guess you could do it manually.

For Example:

:e test1.txt   (or use any existing buffer)
:vs            (or :new or :sp)
:b <tab>       (keep pressing tab until test1.txt comes up. or use the buff no)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.