diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-16 07:19:01 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-16 07:25:38 +0100 |
commit | cb8411d711700cd823c45cb42773c700e167de73 (patch) | |
tree | d49b61fd4b3cf9ef05e3d4fe120c400eb1e5fada /src/parser.cpp | |
parent | c310c7d875c8aa871180de130e820ed19a2489f5 (diff) | |
download | sciteco-cb8411d711700cd823c45cb42773c700e167de73.tar.gz |
documented the automatic EOL translation feature
Diffstat (limited to 'src/parser.cpp')
-rw-r--r-- | src/parser.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index 7d242fd..6ca6652 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1852,7 +1852,7 @@ StateECommand::custom(gchar chr) * [off,]on ED * ED -> flags * - * With arguments, the command will set the ED flags. + * With arguments, the command will set the \fBED\fP flags. * <flags> is a bitmap of flags to set. * Specifying one argument to set the flags is a special * case of specifying two arguments that allow to control @@ -1866,6 +1866,8 @@ StateECommand::custom(gchar chr) * Without any argument ED returns the current flags. * * Currently, the following flags are used by \*(ST: + * - 16: Enable/disable automatic translation of end of + * line sequences to and from line feed. * - 32: Enable/Disable buffer editing hooks * (via execution of macro in global Q-Register \(lqED\(rq) * - 64: Enable/Disable function key macros @@ -1875,6 +1877,9 @@ StateECommand::custom(gchar chr) * * The features controlled thus are discribed in other sections * of this manual. + * + * The default value of the \fBED\fP flags is 16 + * (only automatic EOL translation enabled). */ case 'D': BEGIN_EXEC(&States::start); @@ -2006,8 +2011,8 @@ StateECommand::custom(gchar chr) * Like the Scintilla message, <EL> does \fBnot\fP change the * characters in the current document. * If automatic EOL translation is activated (which is the default), - * \*(ST will however use this information when saving and writing - * out files. + * \*(ST will however use this information when saving files or + * writing to external processes. * * With one argument, the EOL mode is set according to these * constants: |