Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In fact, I just want to write a script to toggle preview window. But it seems can't archived from any internal setting of vim.

So, as title. I want to write a script to do it. Any one knows how to check preview window is opened(or existed)?

share|improve this question

1 Answer

up vote 3 down vote accepted

Check variable previewwindow or pvw(please refer to the link). A sample code would be:

fun! previewWindowOpened
    for nr in range(1, winnr('$'))
        if getwinvar(nr, "&pvw") == 1
            " found a preview
            return 1
        endif  
    endfor
    return 0
endfun
share|improve this answer
Thanks very much! – naive231 Jan 22 at 0:54
How can you know &pvw of 'getwinvar(nr,"&pvw")' ? – naive231 Mar 27 at 5:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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