1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 11:32:26 +01:00
Files
pentadactyl-pm/xulmus/xulmusrc.example
2009-03-16 16:41:07 +11:00

22 lines
418 B
Plaintext
Executable File

" 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 "xulmusrc sourced"
" vim: ft=xulmus: