Couple adjustments to the tab handling, added MXP here and there, and added a toggler '\t' to the improved editor to grant access to tabs.

This commit is contained in:
Vatiken 2012-02-27 01:04:09 +00:00
parent bf26d79323
commit 70d7785fea
11 changed files with 49 additions and 37 deletions

View file

@ -24,14 +24,15 @@ int replace_str(char **string, char *pattern, char *replacement, int rep_all, un
void send_editor_help(struct descriptor_data *d);
/* Action modes for parse_edit_action(). */
#define PARSE_FORMAT 0
#define PARSE_REPLACE 1
#define PARSE_HELP 2
#define PARSE_DELETE 3
#define PARSE_INSERT 4
#define PARSE_LIST_NORM 5
#define PARSE_LIST_NUM 6
#define PARSE_EDIT 7
#define PARSE_FORMAT 0
#define PARSE_REPLACE 1
#define PARSE_HELP 2
#define PARSE_DELETE 3
#define PARSE_INSERT 4
#define PARSE_LIST_NORM 5
#define PARSE_LIST_NUM 6
#define PARSE_EDIT 7
#define PARSE_TOGGLE 8
/* Defines for the action variable. */
#define STRINGADD_OK 0 /* Just keep adding text. */