medit/actions.cfg.example

18 lines
293 B
Plaintext
Raw Normal View History

2006-04-10 04:51:25 -05:00
## weferger
#rgreger
#ergergerg
action: DoSomething
label: Do Something
command: shell
ls $file
action: DoSomethingElse
label: Do Something Else
accel: <ctrl>B
if doc.file then
output = Exec('ls ' + doc.file);
else
output = Exec('ls');
fi;
Insert(output);