From 8908535c7dc9fc7adf3c56b96aecc49b319c5a9e Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 12 Nov 2016 17:20:15 +1100 Subject: Added basic word count feature --- src/windows-editor.adb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/windows-editor.adb') 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; -- cgit