-
Notifications
You must be signed in to change notification settings - Fork 54
Basic Commands
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.
The command below is used to post the contents of the target areavi on codepad.org:
CPPaste()
It opens up the default browser.
This python function can be used to save the contents of the target areavi into a file:
ss('filename')
After executing the following function it loads the specified filename into the target areavi instance:
lo('filename')
The following function add a vertical pane:
vsplit()
This one adds a horizontal pane:
hsplit()
This function is used to write file changes:
s()
Well, it is similar to vim, just issue:
q()