Skip to content
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.

Releases: ueokande/vim-vixen

Release 0.10

20 Jan 14:47
635fa31
Compare
Choose a tag to compare

Fixed corrupted package

Release 0.9

20 Jan 13:34
9614ec1
Compare
Choose a tag to compare

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

  • #308 Focus input
  • #312 keymaps-form: fix a typo
  • #236 Closing pinned tabs must be forced
  • #137 Most recently used tab selector
  • #309 Default properties
  • #300 open clipboard's URL in current/new tab
  • #307 Smooth scroll
  • #306 support custom chars as hintchars
  • #303 Properties support
  • #301 Zip archive

Release 0.8

30 Dec 02:35
f484fda
Compare
Choose a tag to compare
  • #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

28 Nov 12:56
8e60f79
Compare
Choose a tag to compare
  • #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

19 Nov 03:43
507c5b4
Compare
Choose a tag to compare
  • #162 - Ctrl+N,Ctrl+P, and Ctrl+M are available to select completion items.
    But, that is supported only on Mac OS. For Windows and Linux, Ctrl+N does not work.
  • #133, #160 - Improve on certain sites
  • #196 - Improve [[/]] command. That refers rel attribute in a and link tags.

Release 0.5

13 Nov 11:55
a50c7dd
Compare
Choose a tag to compare

#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

05 Nov 03:22
7cdbe31
Compare
Choose a tag to compare

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

26 Oct 12:12
Compare
Choose a tag to compare

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 as foo.example.com/mail/*. Disabled plugin can be made re-enabled by Shift+Esc (in default).

Bug

  • #93, #94 - Improve for certain pages such as Gmail and Slack.
  • #84 - Fix behavior on console focus

Misc

  • #85 - Improve README

Release 0.2

18 Oct 09:55
Compare
Choose a tag to compare

Release notes - Release 0.2

Improvement

  • [#61] Support following links in <iframe> and <frame> tags.

Bug

  • [#54] Fix typing issue in text box on Slack and Twitter.
  • [#72] Fix empty suggestion

Release 0.1

11 Oct 13:33
Compare
Choose a tag to compare

First release