mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
14be06d050
* Added common functions for work with backups of main config files. * Fixed permissions of ~/.mc/ini; * Fixed permissions of ~/.mc/filepos * Fixed permissions of ~/.mc/hotlist * Fixed permissions of ~/.mc/Tree * Fixed ownership for ~/.mc/hotlist file * Changed definitions of config files. Now used constants from src/fileloc.h Also, added ability for change mc user home dir. Just type: {{{ make CFLAGS='-DMC_USERCONF_DIR=\".mc2\"' }}} And you will have different config files (very usefull for testing or development). Signed-off-by: Slava Zanko <slavazanko@gmail.com>
82 lines
2.3 KiB
C
82 lines
2.3 KiB
C
/* edit.h - editor public API
|
|
|
|
Copyright (C) 1996, 1997, 2009 Free Software Foundation, Inc.
|
|
|
|
Authors: 1996, 1997 Paul Sheer
|
|
2009 Andrew Borodin
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
*/
|
|
|
|
/** \file edit.h
|
|
* \brief Header: editor public API
|
|
* \author Paul Sheer
|
|
* \date 1996, 1997
|
|
* \author Andrew Borodin
|
|
* \date 2009
|
|
*/
|
|
|
|
#ifndef MC_EDIT_H
|
|
#define MC_EDIT_H
|
|
|
|
#include "../src/global.h" /* PATH_SEP_STR */
|
|
#include "../src/fileloc.h"
|
|
|
|
/* Editor widget */
|
|
struct WEdit;
|
|
typedef struct WEdit WEdit;
|
|
|
|
#define EDIT_KEY_EMULATION_NORMAL 0
|
|
#define EDIT_KEY_EMULATION_EMACS 1
|
|
#define EDIT_KEY_EMULATION_USER 2
|
|
|
|
extern int option_word_wrap_line_length;
|
|
extern int option_typewriter_wrap;
|
|
extern int option_auto_para_formatting;
|
|
extern int option_fill_tabs_with_spaces;
|
|
extern int option_return_does_auto_indent;
|
|
extern int option_backspace_through_tabs;
|
|
extern int option_fake_half_tabs;
|
|
extern int option_persistent_selections;
|
|
extern int option_cursor_beyond_eol;
|
|
extern int option_line_state;
|
|
extern int option_save_mode;
|
|
extern int option_save_position;
|
|
extern int option_syntax_highlighting;
|
|
extern char *option_backup_ext;
|
|
|
|
/* what editor are we going to emulate? */
|
|
extern int edit_key_emulation;
|
|
|
|
extern int edit_confirm_save;
|
|
|
|
extern int visible_tabs;
|
|
extern int visible_tws;
|
|
|
|
extern int simple_statusbar;
|
|
|
|
/* used in main() */
|
|
void edit_stack_init (void);
|
|
void edit_stack_free (void);
|
|
|
|
int edit_file (const char *_file, int line);
|
|
|
|
const char *edit_get_file_name (const WEdit *edit);
|
|
int edit_get_curs_col (const WEdit *edit);
|
|
const char *edit_get_syntax_type (const WEdit *edit);
|
|
|
|
#endif /* MC_EDIT_H */
|