Skip to content

Commit 1b71b25

Browse files
committed
Add % binding to helix
1 parent 8babb7f commit 1b71b25

File tree

6 files changed

+24
-18
lines changed

6 files changed

+24
-18
lines changed

extensions/helix/package.json

Lines changed: 12 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/api/data/commands.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1582,7 +1582,8 @@ select.buffer:
15821582

15831583
keys:
15841584
qwerty: |-
1585-
`%` (kakoune: normal)
1585+
`%` (core: normal)
1586+
`%` (helix: select)
15861587
15871588
doc:
15881589
en: |+

src/commands/README.md

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/layouts/azerty.fr.md

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/layouts/qwerty.md

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/select.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ declare module "./select";
1313
/**
1414
* Select whole buffer.
1515
*
16-
* @keys `%` (kakoune: normal)
16+
* @keys `%` (core: normal), `%` (helix: select)
1717
*/
1818
export function buffer(_: Context) {
1919
Selections.set([Selections.wholeBuffer()]);

0 commit comments

Comments
 (0)