Skip to content

v2.1.0-beta2

Pre-release
Pre-release
Compare
Choose a tag to compare
@danielcompton danielcompton released this 21 Aug 21:59
· 43 commits to master since this release

This changelog acts as an addition to the one provided for v2.1.0-beta1.

Smooth Scrolling

Smooth scrolling has been added to Vimari. It will be enabled by default but can be disabled through the user configuration. Next to this you are also able to change the duration of the scroll. This feature is based on the smooth scrolling behaviour implemented by sVim.

For more information see #182.

These configuration options can be found in the default configuration
{
  "excludedUrls": "",
  "linkHintCharacters": "asdfjklqwerzxc",
  "detectByCursorStyle": false,
  "scrollSize": 50,
  "openTabUrl": "https://duckduckgo.com/",
  "modifier": "",
  "smoothScroll": true,
  "scrollDuration": 25,
  "bindings": {
      "hintToggle": "f",
      "newTabHintToggle": "shift+f",
      "scrollUp": "k",
      "scrollDown": "j",
      "scrollLeft": "h",
      "scrollRight": "l",
      "scrollUpHalfPage": "u",
      "scrollDownHalfPage": "d",
      "goToPageTop": "g g",
      "goToPageBottom": "shift+g",
      "goToFirstInput": "g i",
      "goBack": "shift+h",
      "goForward": "shift+l",
      "reload": "r",
      "tabForward": "w",
      "tabBack": "q",
      "closeTab": "x",
      "openTab": "t"
  }
}

Minor Changes

  • Entering normal or insert mode will be indicated using the default HUD (#184).