Home

Awesome

util to show popup for vim8 and neovim

if you like my work, check here for a list of my vim plugins, or buy me a coffee

Requirement

Install

use Vundle or any other plugin manager you like to install

Plugin 'ZSaberLv0/ZFVimPopup'
Plugin 'ZSaberLv0/ZFVimJob' " optional, recommeded to combine with this job utility

Usage

if ZFPopupAvailable()
    let popupId = ZFPopupCreate({
            \   'pos' : 'cursor|right|bottom',
            \ })
    call ZFPopupContent(popupId, ['line1', 'line2'])
    call ZFPopupClose(popupId)
endif

Functions