1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-03 09:03:33 +02:00

Begin updating Vim runtime files for xulmus.

This commit is contained in:
Doug Kearns
2009-03-16 16:41:07 +11:00
parent 165b087ef6
commit ee3b58f41f
5 changed files with 6 additions and 111 deletions

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