1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 22:34:13 +01:00
Files
pentadactyl-pm/vimperatorrc.example
2007-04-24 14:10:24 +00:00

13 lines
248 B
Plaintext

" 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