1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-09 17:44:10 +01:00

added sample vimperatorrc, not really useful yet

This commit is contained in:
Martin Stubenschrott
2007-04-24 14:10:24 +00:00
parent 9e71e74a5c
commit 754453bfae

12
vimperatorrc.example Normal file
View File

@@ -0,0 +1,12 @@
" I don't like beeps
set nobeep
echo vimperatorrc found
" embedded javascript is possible
" You can even add new functions which are then available in the :js command
javascript <<EOF
hello = function(name)
{
alert("Hello world: " + name);
}
EOF