summaryrefslogtreecommitdiff
path: root/src/windows-editor.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows-editor.adb')
-rw-r--r--src/windows-editor.adb18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/windows-editor.adb b/src/windows-editor.adb
index e961d4a..bbaa069 100644
--- a/src/windows-editor.adb
+++ b/src/windows-editor.adb
@@ -167,5 +167,23 @@ package body Windows.Editor is
end Show_Insert_Position;
+
+
+ procedure Next_Word
+ (This : in out Editor_Window) is
+ begin
+ This.Editor.Next_Word;
+ end Next_Word;
+
+
+
+
+ procedure Previous_Word
+ (This : in out Editor_Window) is
+ begin
+ This.Editor.Previous_Word;
+ end Previous_Word;
+
+
end Windows.Editor;