
The original patch was posted by Anton Monroe <akm at meer dot net> to mc-devel@gnome.org mailing list: http://mail.gnome.org/archives/mc-devel/2006-April/msg00020.html Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
77 строки
1.9 KiB
C
77 строки
1.9 KiB
C
|
|
/** \file cmd.h
|
|
* \brief Header: routines invoked by a function key
|
|
*
|
|
* They normally operate on the current panel.
|
|
*/
|
|
|
|
#ifndef MC_CMD_H
|
|
#define MC_CMD_H
|
|
|
|
typedef enum
|
|
{
|
|
LINK_HARDLINK = 0,
|
|
LINK_SYMLINK_ABSOLUTE,
|
|
LINK_SYMLINK_RELATIVE
|
|
} link_type_t;
|
|
|
|
void netlink_cmd (void);
|
|
void ftplink_cmd (void);
|
|
void fishlink_cmd (void);
|
|
void smblink_cmd (void);
|
|
void undelete_cmd (void);
|
|
void help_cmd (void);
|
|
void smart_dirsize_cmd (void);
|
|
void single_dirsize_cmd (void);
|
|
void dirsizes_cmd (void);
|
|
int view_file_at_line (const char *filename, int plain_view, int internal,
|
|
int start_line);
|
|
int view_file (const char *filename, int normal, int internal);
|
|
void view_cmd (void);
|
|
void view_file_cmd (void);
|
|
void view_simple_cmd (void);
|
|
void filtered_view_cmd (void);
|
|
void do_edit_at_line (const char *what, int start_line);
|
|
void edit_cmd (void);
|
|
void edit_cmd_new (void);
|
|
void copy_cmd (void);
|
|
void copy_cmd_local (void);
|
|
void rename_cmd (void);
|
|
void rename_cmd_local (void);
|
|
void mkdir_cmd (void);
|
|
void delete_cmd (void);
|
|
void delete_cmd_local (void);
|
|
void find_cmd (void);
|
|
void filter_cmd (void);
|
|
void reread_cmd (void);
|
|
void reselect_vfs (void);
|
|
void ext_cmd (void);
|
|
void edit_mc_menu_cmd (void);
|
|
void edit_fhl_cmd (void);
|
|
void quick_chdir_cmd (void);
|
|
void compare_dirs_cmd (void);
|
|
void diff_view_cmd (void);
|
|
void history_cmd (void);
|
|
void tree_cmd (void);
|
|
void link_cmd (link_type_t link_type);
|
|
void edit_symlink_cmd (void);
|
|
void reverse_selection_cmd (void);
|
|
void unselect_cmd (void);
|
|
void select_cmd (void);
|
|
void swap_cmd (void);
|
|
void view_other_cmd (void);
|
|
void quick_cd_cmd (void);
|
|
void save_setup_cmd (void);
|
|
char *get_random_hint (int force);
|
|
void user_file_menu_cmd (void);
|
|
void info_cmd (void);
|
|
void listing_cmd (void);
|
|
void change_listing_cmd (void);
|
|
void quick_cmd_no_menu (void);
|
|
void info_cmd_no_menu (void);
|
|
void quick_view_cmd (void);
|
|
void toggle_listing_cmd (void);
|
|
void encoding_cmd (void);
|
|
|
|
#endif
|