1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-17 17:45:46 +01:00

clarify that the {pat} arg to :autocmd is a regex used to match the URL

This commit is contained in:
Doug Kearns
2008-07-10 17:22:05 +00:00
parent 182a78ef07
commit c323a7e410

View File

@@ -11,7 +11,7 @@ happen.
________________________________________________________________________________
[c]:au[tocmd][c] {event} {pat} {cmd}.
Add {cmd} to the list of commands Vimperator will execute on {event}:
Add {cmd} to the list of commands Vimperator will execute on {event} for a URL matching {pat}:
* [c]:autocmd[!][c] {events} {pat}: list/remove autocommands filtered by {events} and {pat}
* [c]:autocmd[!][c] {events}: list/remove autocommands matching {events}
@@ -28,7 +28,7 @@ Available {events}:
*Startup* Triggered after Firefox starts
--------------------------------------------------------------
{pat} is a regular expression, use .* if you want to match all events.
{pat} is a regular expression, use .* if you want to match all URLs.
________________________________________________________________________________