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

Release 0.9

Compare
Choose a tag to compare
@ueokande ueokande released this 20 Jan 13:34
· 1556 commits to master since this release
9614ec1

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