Skip to content

Commit

Permalink
Add % binding to helix
Browse files Browse the repository at this point in the history
  • Loading branch information
Strackeror committed Jul 15, 2024
1 parent 8babb7f commit 1b71b25
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 18 deletions.
22 changes: 12 additions & 10 deletions extensions/helix/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/api/data/commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,8 @@ select.buffer:

keys:
qwerty: |-
`%` (kakoune: normal)
`%` (core: normal)
`%` (helix: select)
doc:
en: |+
Expand Down
5 changes: 3 additions & 2 deletions src/commands/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/commands/layouts/azerty.fr.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/commands/layouts/qwerty.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ declare module "./select";
/**
* Select whole buffer.
*
* @keys `%` (kakoune: normal)
* @keys `%` (core: normal), `%` (helix: select)
*/
export function buffer(_: Context) {
Selections.set([Selections.wholeBuffer()]);
Expand Down

0 comments on commit 1b71b25

Please sign in to comment.