readme.md: Update FAQ

This commit is contained in:
glacambre 2018-06-05 06:25:21 +02:00
parent a9bb149bfa
commit a69be0391f
No known key found for this signature in database
GPG key ID: B9625DB1767553AC

View file

@ -184,7 +184,7 @@ You can bind your own shortcuts in normal mode with the `:bind` command. For exa
* How do I disable Tridactyl on certain sites?
You can't yet, see [#158](https://github.com/cmcaine/tridactyl/issues/158).
In the beta you can use `blacklistadd`, like this: `blacklistadd mail.google.com/mail`.
* How can I list the current bindings?
@ -192,7 +192,7 @@ You can bind your own shortcuts in normal mode with the `:bind` command. For exa
* Why doesn't Tridactyl work on some pages?
One possible reason is that the site has a strict content security policy. We can rewrite these to make Tridactyl work, but we do not want to worsen the security of sensitive pages, so it is taking us a little while. See [#112](https://github.com/cmcaine/tridactyl/issues/112).
One possible reason is that the site has a strict content security policy. You can try to use `set csp clobber` to fix this, but know that it could worsen the security of sensitive pages.
* How can I know which mode I'm in/have a status line?
@ -202,6 +202,10 @@ One possible reason is that the site has a strict content security policy. We ca
In addition to the developers, some other people do. Mozilla keeps tabs on them [here](https://addons.mozilla.org/en-US/firefox/addon/tridactyl-vim/statistics/?last=30).
* How do I prevent websites from stealing focus?
There are two ways to do that, the first one is `set allowautofocus false` (if you do this you'll probably also want to set `browser.autofocus` to false in `about:config`). This will prevent the page's `focus()` function from working and could break javascript text editors such as Ace or CodeMirror. Another solution is to use `autocmd TabEnter .* unfocus` in the beta, JS text editors should still work but pages won't steal focus when entering their tabs anymore.
## Contributing
### Building and installing