From 6fa5de9c6015c2d93aac1f3e379844fc36ff865f Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 13 Nov 2016 18:44:21 +1100 Subject: Added jump to feature --- c_fl_text_buffer.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'c_fl_text_buffer.cpp') diff --git a/c_fl_text_buffer.cpp b/c_fl_text_buffer.cpp index 8b0cde1..a28286f 100644 --- a/c_fl_text_buffer.cpp +++ b/c_fl_text_buffer.cpp @@ -69,3 +69,13 @@ void fl_text_buffer_select(TEXTBUFFER tb, int s, int e) { reinterpret_cast(tb)->select(s, e); } + +int fl_text_buffer_skip_lines(TEXTBUFFER tb, int s, int l) { + reinterpret_cast(tb)->skip_lines(s, l); +} + + +int fl_text_buffer_rewind_lines(TEXTBUFFER tb, int s, int l) { + reinterpret_cast(tb)->rewind_lines(s, l); +} + -- cgit