A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
466 B
21 lines
466 B
--- |
|
title: Blacklist |
|
--- |
|
|
|
# Blacklist |
|
|
|
The blacklist allows you to disable the plugin for certain pages by URL patterns. |
|
For instance, you could use `"*.slack.com"` to disable the plugin on all Slack channels. |
|
In addition, you can also specify path patterns, such as `"example.com/mail/*"`. |
|
|
|
```json |
|
{ |
|
"blacklist": [ |
|
"*.slack.com", |
|
"example.com/mail/*" |
|
] |
|
} |
|
``` |
|
|
|
You can toggle Vim Vixen between disabled and enabled with |
|
<kbd>shift</kbd>+<kbd>Esc</kbd>.
|
|
|