summaryrefslogtreecommitdiff
path: root/src/windows-editor.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-12 17:20:15 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-12 17:20:15 +1100
commit8908535c7dc9fc7adf3c56b96aecc49b319c5a9e (patch)
treec7dc949471370aa28924cfb8ca227d933e9e8702 /src/windows-editor.adb
parent7aa86670f5d76284ae193ed1e1ed936b20a5c5fb (diff)
Added basic word count feature
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;