return success;
}
+gboolean command_nextprev(const Arg *arg)
+{
+ if (vb.state.mode & VB_MODE_HINTING) {
+ hints_focus_next(arg->i ? true : false);
+ } else {
+ /* mode will be set in completion_complete */
+ completion_complete(arg->i ? true : false);
+ }
+
+ return true;
+}
+
gboolean command_editor(const Arg *arg)
{
char *file_path = NULL;
return true;
}
-gboolean command_nextprev(const Arg *arg)
-{
- if (vb.state.mode & VB_MODE_HINTING) {
- hints_focus_next(arg->i ? true : false);
- } else {
- /* mode will be set in completion_complete */
- completion_complete(arg->i ? true : false);
- }
-
- return true;
-}
-
static void editor_resume(GPid pid, int status, OpenEditorData *data)
{
char *text;