<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sciteco/Makefile, branch v2.3.0</title>
<subtitle>Scintilla-based Text Editor and COrrector</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/'/>
<entry>
<title>first working version of autotools based build-system</title>
<updated>2012-12-04T21:07:08+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-12-04T18:28:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=655b527827fc2b64b374a1d29e884e92269e9cae'/>
<id>655b527827fc2b64b374a1d29e884e92269e9cae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactoring: split qbuffers.cpp|h into a q-registers (qregisters.cpp) and Buffer ring part (ring.cpp)</title>
<updated>2012-12-04T16:09:31+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-12-04T15:58:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=b120616b6da52e951097f69ad267de06081d218a'/>
<id>b120616b6da52e951097f69ad267de06081d218a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactored search command (states): they are now in a separate search.cpp file</title>
<updated>2012-12-03T16:09:13+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-12-03T16:09:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=aca9517b3d90180581570596cb5ac768ef8c127e'/>
<id>aca9517b3d90180581570596cb5ac768ef8c127e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>NCURSES is the default interface now</title>
<updated>2012-11-24T17:02:45+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-24T17:02:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=14c1d149dd80ea9ab5fa73a10b2114c2801765c2'/>
<id>14c1d149dd80ea9ab5fa73a10b2114c2801765c2</id>
<content type='text'>
 * GTK is not as polished, but still useful for debugging purposes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * GTK is not as polished, but still useful for debugging purposes
</pre>
</div>
</content>
</entry>
<entry>
<title>allow symbolic names (symbols) being specified for the scintilla (ES) command</title>
<updated>2012-11-24T16:56:29+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-24T16:56:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=fad826dcfe095d57aa5faf6cc8a863069f65b0d6'/>
<id>fad826dcfe095d57aa5faf6cc8a863069f65b0d6</id>
<content type='text'>
 * new syntax is &lt;[lParam,[wParam,[msg]]]&gt;ES[msg[,wParam[,lParam]]]$[lParam string]$
 * symbols are matched case-insensitive, the leading SCI_ for message symbols may be omitted
 * added support for more multiple string arguments (for commands in general)
 * fixed "C conditional: succeeds for every alpanumeric character, dot, dollar or underscore
 * added SCLEX_ and SCE_ constants as symbols
 * updated teco.ini: using symbolic names is preferred since that way code does not depend on the current Scintilla version
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * new syntax is &lt;[lParam,[wParam,[msg]]]&gt;ES[msg[,wParam[,lParam]]]$[lParam string]$
 * symbols are matched case-insensitive, the leading SCI_ for message symbols may be omitted
 * added support for more multiple string arguments (for commands in general)
 * fixed "C conditional: succeeds for every alpanumeric character, dot, dollar or underscore
 * added SCLEX_ and SCE_ constants as symbols
 * updated teco.ini: using symbolic names is preferred since that way code does not depend on the current Scintilla version
</pre>
</div>
</content>
</entry>
<entry>
<title>system for looking up static symbols</title>
<updated>2012-11-23T15:02:19+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-23T15:02:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=0e536bd36250419698fe884d01d5997581241d93'/>
<id>0e536bd36250419698fe884d01d5997581241d93</id>
<content type='text'>
 * symbols are extracted from C header files by a TECO macro
 * macro is executed using a "minimal" version of SciTECO that does not include symbols (uses gcc's weak symbols)
 * the generated C++ code contains the symbol-name-to-define mapping as a constant sorted array and initializes the appropriate SymbolList object
 * a symbol lookup is super fast using a simple binary search in the symbol lists
 * except for object initialization, no there's no overhead for keeping the symbol lists!
 * build process is complicated by introduction of bootstrapping via sciteco-minimal
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * symbols are extracted from C header files by a TECO macro
 * macro is executed using a "minimal" version of SciTECO that does not include symbols (uses gcc's weak symbols)
 * the generated C++ code contains the symbol-name-to-define mapping as a constant sorted array and initializes the appropriate SymbolList object
 * a symbol lookup is super fast using a simple binary search in the symbol lists
 * except for object initialization, no there's no overhead for keeping the symbol lists!
 * build process is complicated by introduction of bootstrapping via sciteco-minimal
</pre>
</div>
</content>
</entry>
<entry>
<title>Windows compile fixes</title>
<updated>2012-11-22T12:56:54+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-22T12:56:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=0e548698bbbdecc84173ca129a454d6bedf4438f'/>
<id>0e548698bbbdecc84173ca129a454d6bedf4438f</id>
<content type='text'>
 * as always, link order is relevant
 * PDCurses is default curses on Windows
 * use BSD headers from compat/
 * detect OS automatically using uname
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * as always, link order is relevant
 * PDCurses is default curses on Windows
 * use BSD headers from compat/
 * detect OS automatically using uname
</pre>
</div>
</content>
</entry>
<entry>
<title>changed default scintilla directory</title>
<updated>2012-11-16T18:07:49+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-16T18:07:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=6567dbe9170464e7bd89e86583201b6e4c7dfb9d'/>
<id>6567dbe9170464e7bd89e86583201b6e4c7dfb9d</id>
<content type='text'>
in the most common setup, it will be found in the parent directory
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in the most common setup, it will be found in the parent directory
</pre>
</div>
</content>
</entry>
<entry>
<title>install target</title>
<updated>2012-11-15T19:00:32+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-15T19:00:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=8c27f0437054497360a8358c5e3fb516f1eaa996'/>
<id>8c27f0437054497360a8358c5e3fb516f1eaa996</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ease changing the scintilla directory</title>
<updated>2012-11-15T18:50:17+00:00</updated>
<author>
<name>Robin Haberkorn</name>
<email>robin.haberkorn@googlemail.com</email>
</author>
<published>2012-11-15T18:50:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/sciteco/commit/?id=5fe8298dec3736a2169719af9f0edf8592f3f7b6'/>
<id>5fe8298dec3736a2169719af9f0edf8592f3f7b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
