mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 22:07:59 +01:00
17 lines
305 B
Plaintext
17 lines
305 B
Plaintext
" TODO: add some useful examples
|
|
|
|
" 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
|
|
|
|
" vim: ft=vimperator:
|