From c323a7e4100559dc51b26975da28d2374c23221d Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 10 Jul 2008 17:22:05 +0000 Subject: [PATCH] clarify that the {pat} arg to :autocmd is a regex used to match the URL --- locale/en-US/autocommands.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locale/en-US/autocommands.txt b/locale/en-US/autocommands.txt index 940972ee..6903c590 100644 --- a/locale/en-US/autocommands.txt +++ b/locale/en-US/autocommands.txt @@ -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. ________________________________________________________________________________