view doc/core.txt @ 1:7c5bd18befd2 default tip

Some basic usage
author Luka Sitas <lsitas@avatarasoftware.com>
date Tue, 10 Mar 2026 21:31:17 -0400
parents 7bb5f650cfb7
children
line wrap: on
line source

*core.txt*    Simple example Vim plugin

INTRODUCTION                                        *core*

core is a minimal plugin providing some consistent and 
re-usable functionality.

USAGE                                              *core-usage*

function core#PopupCommand({command})
	Create a popup that runs a terminal {command}

function core#ReadOnlyPopup(content)
	Create a read only popup with the {contents}.
	There is currently no easy way to close this buffer.

function core#ExecuteCommand(command)
	Executes {command} and returns the results.

INSTALLATION                                       *core-install*

Using vim-plug add the following:

Plug '/home/lsitas/repos/vim_plugins/core'


*core*      Main help entry for this plugin.