Releases: ueokande/vim-vixen
Release 0.10
Fixed corrupted package
Release 0.9
Overview
Properties
Properties in settings are now available. Two properties, smoothscroll
and hintchars
are supported in current version.
smoothscroll
property is a boolean value to enable or disable smooth scroll. To configure it in a page, use set
command on the console
:set smoothscroll " enable smooth scroll
:set nosmoothscroll " disable smooth scroll
To configure permanently in JSON configure, set "smoothscroll"
property in the "properties"
directive as following:
{
"properties": {
"smoothscroll": true
}
}
hintchars
property is character set used in hint on the following mode:
:set hintchars=0123456789
and in the JSON settings to permanent it as:
{
"properties": {
"hintchars": "abcdefghijklmnopqrstuvwxyz"
}
}
New keymaps
- Select a most recently used tab:
"<C-6>": { "type": "tabs.prevsel" }
- Focus first input in a page:
"gi": { "type": "focus.input" }
- Closing pinned tabs must:
"!d": { "type": "tabs.close.force" }
- Open an URL from clipboard:
"p": { "type": "urls.paste", "newTab": false }
, open in new tab"P": { "type": "urls.paste", "newTab": true }
Merged Pull Requests
Release 0.8
- #221 Fix history completion to show most frequent results first.
- #222 Fix buffers completion when there are some tabs with undefined title.
- #240 Pagination tweaks and fixes
- #252 Use encodeURIComponent for search queries
- #263 david-dm.org
- #274 Fix grammar: histories -> history
- #280 Fix typo
- #291 do not follow link which has aria-hidden attribute or aria-disabled a…
- #293 fix scroll settings typos
Release 0.7
- #248 - Support settings form. User can configure settings by form easily. Settings in form is migrated from JSON on select settings source, and vice versa.
Release 0.6
Release 0.5
#113 Select first and last tab by g0 and g$ by default
#124 Pin/unpin tab operation by zp by default
#131 Duplicate tab operation by zd by default
#132 Support modifiers in key maps, such as Meta and Alt keys. This also fix an problem on shortcuts on Mac OS (#88)
#142 Find keywords in document by / by default
#149 Enable plugin on about:blank
Release 0.4
Improvement
#123 - Following <area>
tag links
#104 - Run the plugin on document loaded
Bug
#110 - Fix issue on Hacker News
#129 - Fix issue that plugin does not work on plugin reload
#126 - Fix polluting completion on Shift+Tab
Misc
#97, #120, #112 - Improve README.md
#117 - Bump firefox version on Travis CI
Release 0.3
Release notes - Release 0.2
Improvement
- #86 - Support
addon.toggle.enabled
operation to disable the plugin temporary. That is bound to Shift+Esc in the default. For current users, please add"<S-Esc>": { "type": "addon.toggle.enabled" }
into JSON in your settings manually. - #90 - Blacklist support. The new setting
"blacklist"
is supported. You can now specify URLs to disable plugin by patterns. For instance, when you describe*.slack.com
, the plugin are disabled on any Slack rooms. In addition, you can specify path patterns by concatenating a path or pattern, such asfoo.example.com/mail/*
. Disabled plugin can be made re-enabled by Shift+Esc (in default).
Bug
Misc
- #85 - Improve README
Release 0.2
Release 0.1
First release