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.20

04 Feb 07:27
Compare
Choose a tag to compare

Add close tabs to the right command (#516)

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 (#511)

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 },

Fix typos in README.md (#523 and #524 by @tsia)

Release 0.19

20 Oct 11:25
Compare
Choose a tag to compare

Add jump mark feature (#486)

Support marks for jumping to specific position. Press prefix key m to set a mark from current position, and press prefix key ' to jump to position by the mark.

Lowercase alphabet marks ([a-z]) stores position on the current tab. Upper alphabet and numeric marks ([A-Z0-9]) stores position and tab.

To enable this feature, add following key maps into your settings:

"m": { "type": "mark.set.prefix" },
"'": { "type": "mark.jump.prefix" },

Add complete property to controll suggestions (#461)

Add complete property to control suggestions. This property allows users to customize suggestion items on :open, :tabopen, and :winopen commands. The property must be a character set including the following characters:

  • s: search engines
  • h: history
  • b: bookmarks

For example, the following command configures completion items as search engines and histories:

:set complete=sh

This property is also configurable on add-on options.

Remove adjacenttab property (#487)

The adjacenttab property (implemented on #171) is not longer needed.

Fix some typos (#465 and #466 by @Stefanough)

Release 0.18

12 Aug 12:43
1b77846
Compare
Choose a tag to compare

Limit bookmark items on completion (#455)

The number of the history items on completion has been limited. This change fixes the issue of the regression occurs on 0.17.

Release 0.17

08 Aug 11:35
ab85765
Compare
Choose a tag to compare

This version is a emergency patch for release 0.16. Allow compatibility to Firefox earlier version than 61.0.

Release 0.16

07 Aug 12:40
b48c2f7
Compare
Choose a tag to compare

Support buffer flags (#442)

Add buffer number on completion items and support buffer flags on :buffer command. The command selects tabs by number, last selected tab by #, and the current tab by % (nothing to do actually).

Allow following <summary> elements (#432 by @Mange)

This makes it possible to follow <summary> elements inside HTML <detail> elements, in order to expand the details.

p/P shortcuts support clipboard string search (#441)

When clipboard string is not a url, it searches keywords by the default search engine.

Tab completion for console keywords (#431)

Support tab completions for commands and properties on :set command. User can select completion item by Tab and Shift+Tab keys.

Add command to close all tabs (#402 by @jvbrandaom)

Support :qa or :quitall commands to close all tabs in the current window.

Release 0.15

27 Jun 12:12
6d0732e
Compare
Choose a tag to compare

This release contains small bug fix and improvoments.

Update README.md (#418 by @AlexeySachkov)

Improve README.md.

Add follow link in tab to doc (#350 by @tevio)

Improve README.md

Show error if not previous keywords (#414)

Fix showing error Pattern not found: null reported in #396.

Reopen current window (#413)

Reopen recently closed tab in only current window by u. This changes closes #77.

Ignore case tab filtering (#405)

Ignore cases on completion of the :buffer command. That is a default behavior on the location bar. This changes also closes #352.

Release 0.14

17 May 12:54
982a54c
Compare
Choose a tag to compare

This version is a emergency patch for release 0.13. Add toolbar icons to the archive.

Release 0.13

16 May 13:04
6987426
Compare
Choose a tag to compare

Open adjacent tabs and background tabs (#171 by @idlewan)

The new option "background" is added on the follow.start commands. It allows you to open new tab in the background on following mode. To enable this feature, configure keymaps as following:

"F": { "type": "follow.start", "newTab": true, "background": false },

The "adjacenttab" property in the properties is a property to enable to open a new tabs next to the current tab (default to true). To change this add a property like the following:

{
   "properties": {
    "adjacenttab": true
  }
}

You can temporary configure it by :set command:

:set adjacenttab    " enable adjacent tab
:set noadjacenttab  " disable adjacent tab

Add vimperator-like keybindings for next and previous tabs (#198 b7 @kleschenko)

Add g+t and g+T keybindings to default settings.

"gT": { "type": "tabs.prev", "count": 1 },
"gt": { "type": "tabs.next", "count": 1 },

Update notification (#385)

The notification is shown when the new version is installed since this release. User can visit to the release notes page by clicking it.

Add shortcut to view page source (#368 by @emlow)

The "page.source" is a new operation, it opens the source page of the current tab.

"gf": { "type": "page.source" },

Tool bar icon (#386)

The vim-vixen's icons is shown in the tool bar since this version. It indicates whether the plugin is enabled or disabled (toggled by Shift+Esc). User can toggle the state by clicking the icon.

toolbar-icon

Open URLs from bookmarks (#387)

The URL completion from the user's bookmarks is now available on :open, :tabopen, and :winopen commands.

bookmarks-completions

Change "Plane" to "Plain" in settings page (#389 by @Zeropoint1)

In the add-on's preference page, the small typo was been fixed at the the JSON settings.

Create bookmarks (#388)

The new command :addbookmark creates a bookmark from the current URL

:addbookmark My favorite page

The new operation "command.show.addbookmark" allow users easer to launch :addbookmark.

"a": { "type": "command.show.addbookmark", "alter": true },

implement :q to close tab (#348)

Add the :q (or :quit) command to close the current tab. The behavior is very similar to vim's.

:quit

Delete tabs command (#391)

Delete a certain tab by :bdelete, or tabs matched by keywords by :bdeletes. :bdelete and :bdeletes deletes tab(s) excluding pinned. :bdelete! and :bdeletes! delete tabs including pinned.

:bdelete <keywords or url>    " delete a single tab matched with keywords if not pinned.
:bdelete! <keywords or url>   " delete a single tab matched with keywords even if pinned.
:bdeletes <keywords or url>   " delete all tabs matched with keywords excluding pinned tabs.
:bdeletes! <keywords or url>  " delete all tabs matched with keywords even if pinned.

Release 0.12

09 Mar 12:38
4f483a1
Compare
Choose a tag to compare
  • #332 fixed grammar for warning prompt
  • #347 Set opener tab id ... fix issue with Tree Style Tap
  • #351 Cancel by Ctrl+[
  • #354 Hide console by Esc
  • #355 Search across tabs

Release 0.11

23 Jan 12:26
0857f59
Compare
Choose a tag to compare

This is urgent release for #319 .