1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# PLAIN mode
colorize PLAIN {
SyntaxParser = 'PLAIN';
color {
{ 'Normal', 'Editor_Default' },
};
}
mode PLAIN {
#WordChars = 'A-Za-z0-9_';
Abbreviations = 1;
AddCR = 1; # add CR when saving
AddLF = 1; # add LF when saving
AutoIndent = 1; # autoindent
BackSpKillBlock = 0; # to delete block if marked
BackSpKillTab = 0; # backspace kills entire tabs
BackSpUnindents = 1; # backspace at bol unindents
Colorizer = 'PLAIN';
CursorThroughTabs = 1;
DefFindOpt = 'i'; # default find options
DefFindReplaceOpt = 'a'; # default find/replace options
DeleteKillBlock = 0; # ""
DeleteKillTab = 0; # delete kills entire tabs
DetectLineSep = 1; # autodetect eol separator
ExpandTabs = 1; # expand tabs on display
ForceNewLine = 0; # force CR/LF on last saved line
HilitOn = 0; # syntax hilit on
HilitTags = 0;
IndentMode = 'PLAIN'; # indentation mode
IndentWithTabs = 0; # use tabs for auto-indent
Insert = 1; # insert mode
InsertKillBlock = 0; # inserting char kills selected block
KeepBackups = 1; # save backup files
LeftMargin = 1; # wrap left margin
LineChar = 10; # line separator for loading
LoadMargin = -1; # right margin for loading
MatchCase = 0; # find text case sensitively
MultiLineHilit = 0;
PersistentBlocks = 1; # 1 = persistent blocks, 0 = transient
RightMargin = 72; # wrap right margin
SaveBookmarks = 0; # save bookmarks (off = 0, start line = 1, end line = 2, history = 3)
MakeBackups = 1; # save backups of files.
SeeThruSel = 0; # transparent selections
ShowMarkers = 1; # visible eol/eof markers
ShowTabs = 0; # show tabs as small circle on display
SpaceTabs = 0; # insert tabs as spaces
StripChar = 13; # remove this char at eol when loading
TabSize = 8; # tab size 1-32
Trim = 0; # remove whitespace from eol when editing
TrimOnSave = 0; # remove whitespace before saving
Undo = 1; # undo/redo enabled
UndoLimit = 1023; # num of changes to save
UndoMoves = 0; # undo cursor movement commands
WordWrap = 0; # word wrap (off = 0, line = 1, paragraph=2)
# UNIX files have no CR at the end of line
%if(OS_UNIX)
# Don't autodetect line separator
DetectLineSep = 0;
# Don't add CR at EOL when saving
AddCR = 0;
# Don't remove CR if at EOL when loading
StripChar = -1;
%endif
}
oinclude 'mym_plain.fte';
|