From 505310cf25cb535eaed0bd3cf32a0242c05d6d93 Mon Sep 17 00:00:00 2001 From: Chiizujin Date: Sun, 31 Mar 2024 15:42:37 +1100 Subject: [PATCH] Correct help for editor's paste command --- docs/source/Components/EvEditor.md | 2 +- evennia/utils/eveditor.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/Components/EvEditor.md b/docs/source/Components/EvEditor.md index edc554aab1..d4b6f5fbbb 100644 --- a/docs/source/Components/EvEditor.md +++ b/docs/source/Components/EvEditor.md @@ -134,7 +134,7 @@ the in-editor help command (`:h`). :y - yank (copy) line to the copy buffer :x - cut line and store it in the copy buffer - :p - put (paste) previously copied line directly after + :p - put (paste) previously copied line directly before :i - insert new text at line . Old line will move down :r - replace line with text :I - insert text at the beginning of line diff --git a/evennia/utils/eveditor.py b/evennia/utils/eveditor.py index 2df8574368..471533d8f5 100644 --- a/evennia/utils/eveditor.py +++ b/evennia/utils/eveditor.py @@ -88,7 +88,7 @@ _HELP_TEXT = _( :y - yank (copy) line(s) to the copy buffer :x - cut line(s) and store it in the copy buffer - :p - put (paste) previously copied line(s) directly after + :p - put (paste) previously copied line(s) directly before :i - insert new text at line . Old line will move down :r - replace line with text :I - insert text at the beginning of line