about summary refs log tree commit diff stats
path: root/examples/README
blob: ca5148533bc9eba90540d976a5320767a68c477f (plain) (blame)
1
2
3
4
5
6
7
8
The files in this directory contain applications or extensions of ranger which
are put here for your inspiration and as references.

In order to use a plugin from this directory, you need to copy it to
~/.config/ranger/plugins/

Note that if you update ranger to a new minor version (for example,
from 1.6.* to 1.7.0), your outdated plugins WILL break and crash ranger.
*/ #ifndef TRAVERSAL_H #define TRAVERSAL_H #ifndef HTUTILS_H #include <HTUtils.h> /* BOOL, ARGS */ #endif #ifdef __cplusplus extern "C" { #endif extern BOOLEAN lookup_link(char *target); extern void add_to_table(char *target); extern void add_to_traverse_list(char *fname, char *prev_link_name); extern void dump_traversal_history(void); extern void add_to_reject_list(char *target); extern BOOLEAN lookup_reject(char *target); #ifdef __cplusplus } #endif #endif /* TRAVERSAL_H */