From b2f5e7862ef2c677296fe7cd33289eb01e42ecd8 Mon Sep 17 00:00:00 2001 From: Ryuki <53246723+ryukiyokoo1164@users.noreply.github.com> Date: Wed, 19 Aug 2026 20:59:13 +0900 Subject: [PATCH 1/2] Clarify editor:kill-line description The description for `editor:kill-line` currently reads "Deletes the line at the cursor," which can be misread as deleting the entire line. As confirmed by @craftzdog on the forum (https://forum.inkdrop.app/t/sublime-plugin-doesnt-work-on-v6/5577), `editor:kill-line` actually works the same way as Emacs' traditional `kill-line`: it deletes from the cursor to the end of the line, not the whole line. This PR updates the description to make that behavior clearer. --- src/app/guides/list-of-commands/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/guides/list-of-commands/page.mdx b/src/app/guides/list-of-commands/page.mdx index 3399099..cf8f90f 100644 --- a/src/app/guides/list-of-commands/page.mdx +++ b/src/app/guides/list-of-commands/page.mdx @@ -1352,7 +1352,7 @@ Toggles a dialog which allows you to jump to the line at the specified number. ### editor:kill-line {{ selector: '.cm-editor' }} -Deletes the line at the cursor. +Deletes from the cursor to the end of the line, in the style of Emacs' `kill-line`. ### editor:new-line {{ selector: '.cm-editor' }} From 8673f2cc96890c61bce82904b0769f484c23fec4 Mon Sep 17 00:00:00 2001 From: Takuya Matsuyama Date: Sat, 22 Aug 2026 10:29:42 +0900 Subject: [PATCH 2/2] docs(commands): Drop the Emacs reference from editor:kill-line --- src/app/guides/list-of-commands/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/guides/list-of-commands/page.mdx b/src/app/guides/list-of-commands/page.mdx index cf8f90f..1cb7e15 100644 --- a/src/app/guides/list-of-commands/page.mdx +++ b/src/app/guides/list-of-commands/page.mdx @@ -1352,7 +1352,7 @@ Toggles a dialog which allows you to jump to the line at the specified number. ### editor:kill-line {{ selector: '.cm-editor' }} -Deletes from the cursor to the end of the line, in the style of Emacs' `kill-line`. +Deletes from the cursor to the end of the line. ### editor:new-line {{ selector: '.cm-editor' }}