blob: 59116353dae568ddf721e17bbcb0a48f27e09cfa [file] [log] [blame]
Bram Moolenaared8ce052020-04-29 21:04:15 +02001/* textobject.c */
2int findsent(int dir, long count);
3int findpar(int *pincl, int dir, long count, int what, int both);
4int startPS(linenr_T lnum, int para, int both);
5int fwd_word(long count, int bigword, int eol);
6int bck_word(long count, int bigword, int stop);
7int end_word(long count, int bigword, int stop, int empty);
8int bckend_word(long count, int bigword, int eol);
9int current_word(oparg_T *oap, long count, int include, int bigword);
10int current_sent(oparg_T *oap, long count, int include);
11int current_block(oparg_T *oap, long count, int include, int what, int other);
12int current_tagblock(oparg_T *oap, long count_arg, int include);
13int current_par(oparg_T *oap, long count, int include, int type);
14int current_quote(oparg_T *oap, long count, int include, int quotechar);
15/* vim: set ft=c : */