Vim Vixen 版本历史 - 25 个版本
Vim Vixen 作者: Shin'ya Ueoka
Vim Vixen 版本历史 - 25 个版本
小心旧版本!显示这些版本是为了测试和参考目的。您应该始终使用附加组件的最新版本。
- 下载 Firefox 并安装扩展您需要 Firefox 来使用此扩展
版本 0.23
发布于 2019年5月29日 - 243.02 KB适用于 firefox 42.0 及更高版本### Fix warnings on Android (#586 by @robsmith11)
Vim Vixen works on Firefox for Android (experimental).
This change suppresses some warnings occurs only on Android.
### Add "repeat last operation" command
Add `repeat.last` command by <kbd>.</kbd> key in default. It repeats last
manipulation command such as opening, updating and deleting a tab. To enabled
this for current users, please add the following keymap into your json:
```json
".": { "type": "repeat.last" }
```源代码遵循 MIT 许可证 发布
版本 0.22
发布于 2019年4月27日 - 75.35 KB适用于 firefox 42.0 及更高版本, android 48.0 至 68.*### Show yanked url
Instead of `Current url yanked` show `Yanked https://current-website.com/`.
### Support blacklist with port
Support to specify port to the blacklist, such as `127.0.0.1:8080`.
### Fix Content-Security-Policy issues
Vim Vixen was broke on some sites because of [Content Security Policy (CSP)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP). The CSP prevents untrusted contents by blocking inline `<style>` tags on the document. Now an issue on Vim Vixen on CSP-enabled sites are fixed.源代码遵循 MIT 许可证 发布
版本 0.21
发布于 2019年3月23日 - 73.85 KB适用于 firefox 60.0 及更高版本### Make smooth-scroll smoother (#536)
Make smooth-scroll more smoother. To enable smooth-scroll, type `set smoothscroll` or add `smoothscroll: true` into your settings.
### Space key map (#537)
Allow to enable keymap <kbd>Space</kbd> key:
```json
"keymaps": {
"<Space>": { "type": "follow.start", "newTab": false },
"<C-Space>": { "type": "follow.start", "newTab": true, "background": false }
}
```
### Scroll console (#538)
Limits number of shown item on console completion. The hidden items
### Update README.md (#543 by @ryanstreur)
### Correct spelling of WebExtensions (#535 by @sleepypikachu)
### Update documents (#552 by @TeepaBlue)
### Use browser.runtime.onInstalled event (#539)
### Refactor background (#544)
see also: https://github.com/ueokande/vim-vixen/releases源代码遵循 MIT 许可证 发布
版本 0.20
发布于 2019年2月4日 - 74.1 KB适用于 firefox 42.0 及更高版本### Add close tabs to the right command
Close tabs to the right by `Shift+D`. For current users, add the following keymaps into your configuration.
```
`"D": { "type": "tabs.close.right" },`
```
### Open homepage
Add key bindings to open homepage by `gh` and `gH`. `gh` opens homepage in current page, and `gH` opens homepage as new tabs.
For current users, add the following keymaps into your configuration.
```
"gh": { "type": "page.home" },
"gH": { "type": "page.home", "newTab": true },
```
For more details, see also release note:
https://github.com/ueokande/vim-vixen/releases/tag/0.20源代码遵循 MIT 许可证 发布