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