aboutsummaryrefslogtreecommitdiff
path: root/text-motions.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-02-15 08:25:23 +0100
committerMarc André Tanner <mat@brain-dump.org>2017-02-15 08:27:59 +0100
commit749e6f9a50d5570d40c2c5f1ebc3eaceb32776da (patch)
treea6d6d0dafc4fdb4a8f5bea2e6a9c2ea72263a51d /text-motions.h
parentd266238916882b4082b3ddbb71941aea5e7d20ef (diff)
downloadvis-749e6f9a50d5570d40c2c5f1ebc3eaceb32776da.tar.gz
vis-749e6f9a50d5570d40c2c5f1ebc3eaceb32776da.tar.xz
vis: remove motion and text objects related to C functions
These do not really belong into the editor core. If desired they could be implemented in Lua instead.
Diffstat (limited to 'text-motions.h')
-rw-r--r--text-motions.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/text-motions.h b/text-motions.h
index a52b778..cca84c1 100644
--- a/text-motions.h
+++ b/text-motions.h
@@ -102,11 +102,6 @@ size_t text_sentence_prev(Text*, size_t pos);
*/
size_t text_paragraph_next(Text*, size_t pos);
size_t text_paragraph_prev(Text*, size_t pos);
-/* Find next/previous start/end of a C like function definition */
-size_t text_function_start_next(Text*, size_t pos);
-size_t text_function_start_prev(Text*, size_t pos);
-size_t text_function_end_next(Text*, size_t pos);
-size_t text_function_end_prev(Text*, size_t pos);
/* A section begins after a form-feed in the first column.
size_t text_section_next(Text*, size_t pos);
size_t text_section_prev(Text*, size_t pos);