Add help pages from readme
This commit is contained in:
parent
c92d3ae708
commit
9db4794a88
6 changed files with 298 additions and 0 deletions
21
docs/blacklist.md
Normal file
21
docs/blacklist.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
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>.
|
Reference in a new issue