You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cfiles/config.h

69 lines
1.3 KiB

#ifndef CONFIG
#define CONFIG
/*
Change your keybindings in this section
*/
// Go to the end of the current directory
#define KEY_GOEND 'G'
// Go to the start of the current directory
#define KEY_START 'g'
// Go to the top of the current view
#define KEY_TOP 'H'
// Go to the middle of the current view
#define KEY_MID 'M'
// Go to the bottom of the current view
#define KEY_BOTTOM 'L'
// Search all files with current directory as base
#define KEY_SEARCHALL 'F'
// Search all files within the current directory
#define KEY_SEARCHDIR 'f'
// Add file to selection list
#define KEY_SEL ' '
// View all the selected files
#define KEY_VIEWSEL '\t'
// Edit the selection list
#define KEY_EDITSEL 'e'
// Empty the selection list
#define KEY_EMPTYSEL 'u'
// Copy files in selection list to the current directory
#define KEY_YANK 'y'
// Move files in selection list to the current directory
#define KEY_MV 'v'
// Rename files in selection list
#define KEY_RENAME 'a'
// For getting an option to either move the file to trash or delete it
#define KEY_REMOVEMENU 'd'
// For moving the file to trash after pressing KEY_REMOVEMENU
#define KEY_TRASH 'D'
// For removing the file after pressing KEY_REMOVEMENU
#define KEY_DELETE 'd'
// View file info
#define KEY_INFO 'i'
// Open Shell
#define KEY_SHELL 'S'
// Reload
#define KEY_RELOAD 'r'
#endif