1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 21:04:12 +01:00

New directory layout.

This commit is contained in:
Kris Maglione
2008-12-02 13:42:44 -05:00
parent 3a8817a560
commit 1c153aa978
81 changed files with 133 additions and 0 deletions

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: