This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
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 }