Skip to content

Experimental Vim9 library to create editable popup windows

Notifications You must be signed in to change notification settings

Bakudankun/popupe.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Popupe.vim

Popupe.vim provides some functions that creates editable popups by hacking Vim's terminal popup window. This is really hacky so it can be broken by future change of Vim. Please use this at your own risk.

For further information, see the doc.

Example

vim9script

import autoload 'popupe.vim'

popupe.PopupInput((result: string) => {
  if result is null_string
    echo 'Cancelled'
  else
    echo result
  endif
})

About

Experimental Vim9 library to create editable popup windows

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published