zathura/completion.h
2011-10-08 23:23:56 +02:00

29 lines
761 B
C

/* See LICENSE file for license and copyright information */
#ifndef COMPLETION_H
#define COMPLETION_H
#include <girara.h>
/**
* Completion for the open command - Creates a list of accesible directories or
* files
*
* @param session The used girara session
* @param input The current input
* @return The completion object or NULL if an error occured
*/
girara_completion_t* cc_open(girara_session_t* session, const char* input);
/**
* Completion for the bmarks command - Creates a list of bookmarks
*
* @param session The used girara session
* @param input The current input
* @return The completion object or NULL if an error occured
*/
girara_completion_t* cc_bookmarks(girara_session_t* session, const char* input);
#endif // COMPLETION_H