From 2fbe7fc5b541d8c1372d546478d82b43c7efe8be Mon Sep 17 00:00:00 2001 From: Axlefublr <101342105+Axlefublr@users.noreply.github.com> Date: Mon, 26 May 2025 21:48:32 +0800 Subject: [PATCH] fix(doc): missing capitalization of `goto_{next,prev}_tabstop` (#13616) --- book/src/generated/static-cmd.md | 4 ++-- helix-term/src/commands.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/book/src/generated/static-cmd.md b/book/src/generated/static-cmd.md index 92a1fb2a1..fa9123219 100644 --- a/book/src/generated/static-cmd.md +++ b/book/src/generated/static-cmd.md @@ -301,5 +301,5 @@ | `command_palette` | Open command palette | normal: `` ? ``, select: `` ? `` | | `goto_word` | Jump to a two-character label | normal: `` gw `` | | `extend_to_word` | Extend to a two-character label | select: `` gw `` | -| `goto_next_tabstop` | goto next snippet placeholder | | -| `goto_prev_tabstop` | goto next snippet placeholder | | +| `goto_next_tabstop` | Goto next snippet placeholder | | +| `goto_prev_tabstop` | Goto next snippet placeholder | | diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 64768c0dc..10b7b1662 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -599,8 +599,8 @@ impl MappableCommand { command_palette, "Open command palette", goto_word, "Jump to a two-character label", extend_to_word, "Extend to a two-character label", - goto_next_tabstop, "goto next snippet placeholder", - goto_prev_tabstop, "goto next snippet placeholder", + goto_next_tabstop, "Goto next snippet placeholder", + goto_prev_tabstop, "Goto next snippet placeholder", ); }