Helix Keybindings

by obsidian-helix
5
4
3
2
1
Score: 35/100

Description

This plugin has not been manually reviewed by Obsidian staff. Use Helix key bindings when editing.

Reviews

No reviews yet.

Stats

stars
downloads
0
forks
1
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Obsidian Helix Keybindings

This plugin enables Helix keybindings in Obsidian.md using the Helix CodeMirror6 extension by jrvidal. This plugin simply adds the extension to the editor, all credit goes to jrvidal for actually implementing the extension.

Keep in mind the CM6 extension is in a very early stage of development.

Installation

Because this plugin isn't oficially in the Obsidian plugin list (yet), you must install it directly from the repo. Two ways to do this are using BRAT or manually.

Via BRAT

  1. Install BRAT
  2. Copy the link to this Git repository
  3. Follow these instructions

Manually

  1. Clone the repository into <your vault directory>/.obsidian/plugins and then run:
$ npm i
$ npm run build
  1. Restart Obsidian.
  2. Go to Settings in Obsidian and enable Helix Keybindings.

Usage

  1. Make sure Vim keybindings are disabled in Options->Editor->Advanced.
  2. Enable Helix keybindings in the plugin settings or toggle them via the command.

Customize cursor color

By default, the cursor color is the accent color. You can set it to another color by creating a custom CSS snippet for your vault, such as this:

.cm-hx-block-cursor .cm-hx-cursor {
  background: red !important;
}