Show matching url in case of `bmr tag<Tab>` as for the open command
`:open tag<Tab>` which is none sorting to keep the url in the sort order
they where added to the bookmarks. This means the last added bookmarks
or ordered first in the completion list.
switch (arg->code) {
case EX_OPEN:
case EX_TABOPEN:
- sort = FALSE;
+ sort = FALSE;
if (*token == '!') {
found = bookmark_fill_completion(store, token + 1);
} else {
break;
case EX_BMR:
+ sort = FALSE;
found = bookmark_fill_completion(store, token);
break;