1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 10:14:13 +01:00

And xulmus was born.

This commit is contained in:
Doug Kearns
2009-03-16 15:54:02 +11:00
parent 9f70457a4a
commit 80beaa41df
61 changed files with 7085 additions and 36 deletions

21
xulmus/vimperatorrc.example Executable file
View File

@@ -0,0 +1,21 @@
" TODO: add some useful examples
" I don't like beeps
set visualbell
" autoignore mode on certain pages
:autocmd PageLoad .* :js modes.passAllKeys = /gmail\.com/.test(buffer.URL)
" 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
echo "vimperatorrc sourced"
" vim: ft=vimperator: