Skip to main content
Version: Next

list

function list(): string[];

List all registered ex command names.

warning

The builtin js command will not be listed here.

Returns

string[]

Returns all registered ex command names, except the js command.

Example

Rsvim.cmd.list().forEach((name) => {
Rsvim.cmd.echo(`Command: ${name}`);
});