<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sciteco/doc, branch v0.6.4</title>
<subtitle>Scintilla-based Text Editor and COrrector</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/'/>
<entry>
<title>implemented function key masking (context-sensitive function key macros)</title>
<updated>2015-03-16T18:44:29+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-16T18:41:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=64ee41446def1605a71d49fce6461b8ff3f5c0d2'/>
<id>64ee41446def1605a71d49fce6461b8ff3f5c0d2</id>
<content type='text'>
 * fnkeys.tes has been updated to enable the command line
   editing macros (cursor keys, etc.) only in the "start" state.
   This avoids the annoying effect of inserting the macros
   into string arguments where they have no effect and must be
   rubbed out again.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * fnkeys.tes has been updated to enable the command line
   editing macros (cursor keys, etc.) only in the "start" state.
   This avoids the annoying effect of inserting the macros
   into string arguments where they have no effect and must be
   rubbed out again.
</pre>
</div>
</content>
</entry>
<entry>
<title>removed claim of no bugs in sciteco(1) ;-)</title>
<updated>2015-03-16T16:55:49+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-16T16:55:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=746d7d1caf0fd0fb767a359f0eb5534ae2d8e653'/>
<id>746d7d1caf0fd0fb767a359f0eb5534ae2d8e653</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>documented the automatic EOL translation feature</title>
<updated>2015-03-16T06:25:38+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-16T06:19:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=cb8411d711700cd823c45cb42773c700e167de73'/>
<id>cb8411d711700cd823c45cb42773c700e167de73</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>added --no-profile command line option</title>
<updated>2015-03-10T22:23:46+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-10T22:23:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=20cb9a7d13ed36593432509ac0215b21c54d6657'/>
<id>20cb9a7d13ed36593432509ac0215b21c54d6657</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>added the &lt;"I&gt; conditional for checking a directory separator</title>
<updated>2015-03-10T18:00:06+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-10T18:00:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=112600774798e53e2ffbab6e0bbbc6fe625bf88b'/>
<id>112600774798e53e2ffbab6e0bbbc6fe625bf88b</id>
<content type='text'>
 * It is still useful to have this in macros since you may want to
   work with non-normalized file names.
   For instance, env variables (including $SCITECOPATH and $SCITECOCONFIG)
   may (and will probably) include backward-slash separators on Windows
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * It is still useful to have this in macros since you may want to
   work with non-normalized file names.
   For instance, env variables (including $SCITECOPATH and $SCITECOCONFIG)
   may (and will probably) include backward-slash separators on Windows
</pre>
</div>
</content>
</entry>
<entry>
<title>always normalize directory separators to "/" in the "*" Q-Register</title>
<updated>2015-03-10T17:35:00+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-10T17:35:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=a0d1231340617ab28a941f723793ad7be242ca0c'/>
<id>a0d1231340617ab28a941f723793ad7be242ca0c</id>
<content type='text'>
 * on Windows, this register contained backward slashes. This means
   that macros working with that register had to cope with both
   forward and backward slashes.
 * The file names are still displayed in the native style by the UI
 * This approach also has disadvantages: What if the user wants
   to insert the current file name somewhere where "\" is expected?
   However, this seems to be an unlikely case and the use can still
   replace the "/" with "\" again.
 * Avoid some virtual method calls in QRegisterBufferInfo
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * on Windows, this register contained backward slashes. This means
   that macros working with that register had to cope with both
   forward and backward slashes.
 * The file names are still displayed in the native style by the UI
 * This approach also has disadvantages: What if the user wants
   to insert the current file name somewhere where "\" is expected?
   However, this seems to be an unlikely case and the use can still
   replace the "/" with "\" again.
 * Avoid some virtual method calls in QRegisterBufferInfo
</pre>
</div>
</content>
</entry>
<entry>
<title>canonicalize $SCITECOCONFIG and $SCITECOPATH variables</title>
<updated>2015-03-07T20:18:34+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-07T20:18:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=ebf04404a21733b749edd84b32af1f5f63dfdfe3'/>
<id>ebf04404a21733b749edd84b32af1f5f63dfdfe3</id>
<content type='text'>
 * this makes them absolute and also resolves links on Unix
 * macros can now assume the corresponding Q-regs to be absolute
 * Currently this does not make a big difference since the
   working directory of the SciTECO process cannot be changed.
   Once I implement a command to change the working dir, this
   is essential.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * this makes them absolute and also resolves links on Unix
 * macros can now assume the corresponding Q-regs to be absolute
 * Currently this does not make a big difference since the
   working directory of the SciTECO process cannot be changed.
   Once I implement a command to change the working dir, this
   is essential.
</pre>
</div>
</content>
</entry>
<entry>
<title>improved --help output and introduced PACKAGE_URL_DEV (for development home)</title>
<updated>2015-03-07T19:32:51+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-07T19:32:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=4a4687c4ce4e5aa09e54531c662355d294dcaa6c'/>
<id>4a4687c4ce4e5aa09e54531c662355d294dcaa6c</id>
<content type='text'>
 * The PACKAGE_URL_DEV is also mentioned in --help output and sciteco(1)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * The PACKAGE_URL_DEV is also mentioned in --help output and sciteco(1)
</pre>
</div>
</content>
</entry>
<entry>
<title>changed save point file format to .teco-&lt;n&gt;-&lt;filename&gt;~</title>
<updated>2015-03-07T18:00:46+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-07T18:00:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=63c88b9616a7d9f25ee1d466fbdd74792dec9a37'/>
<id>63c88b9616a7d9f25ee1d466fbdd74792dec9a37</id>
<content type='text'>
 * It is no longer possible to accidentally open save point files
   of the same or another SciTECO instance when typing something like
   EB*.cpp$
 * The use of a trailing ~ is common among editors. These files
   will be recognized more easily as temporary by users.
 * People will often already have VCS ignore rules for files with
   trailing tilde. Therefore SciTECO savepoints will often be
   already ignored by VCS.
 * Since they still have a unique ".teco" prefix, they will not
   be confused by other programs as backup files.
 * Also mention in sciteco(1) that save point files are hidden on
   Windows.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * It is no longer possible to accidentally open save point files
   of the same or another SciTECO instance when typing something like
   EB*.cpp$
 * The use of a trailing ~ is common among editors. These files
   will be recognized more easily as temporary by users.
 * People will often already have VCS ignore rules for files with
   trailing tilde. Therefore SciTECO savepoints will often be
   already ignored by VCS.
 * Since they still have a unique ".teco" prefix, they will not
   be confused by other programs as backup files.
 * Also mention in sciteco(1) that save point files are hidden on
   Windows.
</pre>
</div>
</content>
</entry>
<entry>
<title>sciteco(7): Use em-dash (\[em]) characters instead of "-" in sentences</title>
<updated>2015-03-07T02:21:30+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2015-03-07T02:21:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=80bc1c0716e0ba7f9ebc89670576f6fe558d3d53'/>
<id>80bc1c0716e0ba7f9ebc89670576f6fe558d3d53</id>
<content type='text'>
this looks better in Unicode terminals
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this looks better in Unicode terminals
</pre>
</div>
</content>
</entry>
</feed>
