.B bookmarks
The bookmark completion is similar to the history completion, but does match
only the tags of the bookmarks.
-The bookmark completion is started by `:open \fB!\fP`
-or `:tabopen \fB!\fP` and does a prefix search for all given words in
-the bookmark tags.
+The bookmark completion is started by `:open \fB!\fP`, `:tabopen \fB!\fP` or
+`:bmr ` and does a prefix search for all given words in the bookmark tags.
.sp
Example:
.RS
will match all bookmarks that have tags starting with "foo" and "ba".
If the bookmark does not have any tags set, the URL is split on `.' and `/'
into tags.
+.IP ":bmr tag"
+will match all bookmarks that have tags starting with "tag".
.PD
.RE
.TP
found = bookmark_fill_tag_completion(store, token);
break;
+ case EX_BMR:
+ found = bookmark_fill_completion(store, token);
+ break;
+
case EX_SCR: /* Fallthrough */
case EX_SCD:
found = shortcut_fill_completion(c, store, token);