1 /*
2  * Copyright 2018 Jiri Techet <techet@gmail.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18 
19 #ifndef __VIMODE_CMDS_TXTOBJS_H__
20 #define __VIMODE_CMDS_TXTOBJS_H__
21 
22 #include "context.h"
23 #include "cmd-params.h"
24 
25 void cmd_select_quotedbl(CmdContext *c, CmdParams *p);
26 void cmd_select_quoteleft(CmdContext *c, CmdParams *p);
27 void cmd_select_apostrophe(CmdContext *c, CmdParams *p);
28 void cmd_select_brace(CmdContext *c, CmdParams *p);
29 void cmd_select_paren(CmdContext *c, CmdParams *p);
30 void cmd_select_less(CmdContext *c, CmdParams *p);
31 void cmd_select_bracket(CmdContext *c, CmdParams *p);
32 
33 void cmd_select_quotedbl_inner(CmdContext *c, CmdParams *p);
34 void cmd_select_quoteleft_inner(CmdContext *c, CmdParams *p);
35 void cmd_select_apostrophe_inner(CmdContext *c, CmdParams *p);
36 void cmd_select_brace_inner(CmdContext *c, CmdParams *p);
37 void cmd_select_paren_inner(CmdContext *c, CmdParams *p);
38 void cmd_select_less_inner(CmdContext *c, CmdParams *p);
39 void cmd_select_bracket_inner(CmdContext *c, CmdParams *p);
40 
41 #endif
42