Skip to content
Iury O. G. Figueiredo edited this page Aug 24, 2016 · 5 revisions

In vy, commands are merely python functions that are exposed to the user. The following commands are the most basic ones.

Post code onto codepad.org

The command below is used to post the contents of the target areavi on codepad.org:

CPPaste()

It opens up the default browser.

Save file

This python function can be used to save the contents of the target areavi into a file:

ss('filename')

Load a file

After executing the following function it loads the specified filename into the target areavi instance:

lo('filename')

Vertical split

The following function add a vertical pane:

vsplit()

Horizontal split

This one adds a horizontal pane:

hsplit()

Write changes

This function is used to write file changes:

s()

How to quit?

Well, it is similar to vim, just issue:

q()
Clone this wiki locally