Vim keybinding extension

Describe your Extension idea
A vim extension to add vim keybindings

What problem(s) would this Extension solve?
Effieciency buff? IDK lol

Explain what you were trying to do when you came across the problem leading to this Extensions request
I want to by able to use my vim keybindings on replit

2 Likes

in workspace: Tools > Settings > Keybinds

2 Likes

Already exists:

  1. Open a new tab in your Repl workspace
  2. Type or find (then select) “Settings”
  3. Select “Keybinds”
  4. Select “Vim”
3 Likes

keybindings are also becoming more customizable soon. we will also explore an extensions api for keybinding eventually

5 Likes

I’m definitely looking forward to customizable vim key bindings especially changing the ESC key, to exit out of insert mode to normal mode.

1 Like

Is there any progress on it?

I need to change ESC to something else to exit from the insert mode. Eagerly looking forward to it.

Something like this from my VScode:

"vim.insertModeKeyBindings": [
		{
			"before": [
				"j",
				"j"
			],
			"after": [
				"<Esc>"
			]
		}
	],
1 Like

I was lost until saw that screen capture

1 Like