Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 431 Bytes

wordnet_vim.rst

File metadata and controls

18 lines (12 loc) · 431 Bytes

autoload/plugins/wordnet_vim.vim

.. function:: wordnet_close_win() -> None

    Close wordnet_ window from anywhere.

function! plugins#wordnet_vim#close_win() abort
    if bufnr('__WordNet__') > -1
        execute bufnr('__WordNet__') .. 'bdelete!'
    endif
endfunction