vim: Allow ^ as a motion

Fixes: zed-industries/community#856
This commit is contained in:
Conrad Irwin 2023-07-03 12:55:41 -06:00
parent b055f594b0
commit fe57e04016

View File

@ -35,6 +35,7 @@
"l": "vim::Right",
"right": "vim::Right",
"$": "vim::EndOfLine",
"^": "vim::FirstNonWhitespace",
"shift-g": "vim::EndOfDocument",
"w": "vim::NextWordStart",
"shift-w": [
@ -165,7 +166,6 @@
"shift-a": "vim::InsertEndOfLine",
"x": "vim::DeleteRight",
"shift-x": "vim::DeleteLeft",
"^": "vim::FirstNonWhitespace",
"o": "vim::InsertLineBelow",
"shift-o": "vim::InsertLineAbove",
"~": "vim::ChangeCase",