SF.net SVN: geany: [1845] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Fri Aug 31 11:42:58 UTC 2007
Revision: 1845
http://geany.svn.sourceforge.net/geany/?rev=1845&view=rev
Author: ntrel
Date: 2007-08-31 04:42:58 -0700 (Fri, 31 Aug 2007)
Log Message:
-----------
Include \n\r newline chars in Scintilla whitespace chars.
Modified Paths:
--------------
trunk/ChangeLog
trunk/data/filetypes.common
trunk/doc/geany.html
trunk/doc/geany.txt
trunk/src/highlighting.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-08-30 15:11:33 UTC (rev 1844)
+++ trunk/ChangeLog 2007-08-31 11:42:58 UTC (rev 1845)
@@ -1,3 +1,10 @@
+2007-08-31 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/highlighting.c, doc/geany.txt, doc/geany.html,
+ data/filetypes.common:
+ Include \n\r newline chars in Scintilla whitespace chars.
+
+
2007-08-30 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/interface.c, src/keybindings.c, geany.glade:
Modified: trunk/data/filetypes.common
===================================================================
--- trunk/data/filetypes.common 2007-08-30 15:11:33 UTC (rev 1844)
+++ trunk/data/filetypes.common 2007-08-31 11:42:58 UTC (rev 1845)
@@ -52,4 +52,4 @@
[settings]
# which characters should be skipped when moving (or included when deleting) to word boundaries
# should always include space and tab (\s\t)
-whitespace_chars=\s\t!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~
+whitespace_chars=\s\t\n\r!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~
Modified: trunk/doc/geany.html
===================================================================
--- trunk/doc/geany.html 2007-08-30 15:11:33 UTC (rev 1844)
+++ trunk/doc/geany.html 2007-08-31 11:42:58 UTC (rev 1845)
@@ -6,7 +6,7 @@
<meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" />
<title>Geany</title>
<meta name="authors" content="Enrico Tröger Nick Treleaven Frank Lanitz" />
-<meta name="date" content="2007-08-29" />
+<meta name="date" content="2007-08-30" />
<style type="text/css">
/*
@@ -133,7 +133,7 @@
<br />Nick Treleaven
<br />Frank Lanitz</td></tr>
<tr><th class="docinfo-name">Date:</th>
-<td>2007-08-29</td></tr>
+<td>2007-08-30</td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>0.12</td></tr>
</tbody>
@@ -2077,7 +2077,7 @@
when moving, selecting and deleting across word boundaries
(see <a class="reference" href="#scintilla-keyboard-commands">Scintilla keyboard commands</a>).</p>
<p>This should include space (\s) and tab (\t).</p>
-<p class="last"><em>Example:</em> <tt class="docutils literal"><span class="pre">whitespace_chars=\s\t!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~</span></tt></p>
+<p class="last"><em>Example:</em> <tt class="docutils literal"><span class="pre">whitespace_chars=\s\t\n\r!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~</span></tt></p>
</dd>
</dl>
</div>
@@ -2962,7 +2962,7 @@
<div class="footer">
<hr class="footer" />
<a class="reference" href="geany.txt">View document source</a>.
-Generated on: 2007-08-30 10:25 UTC.
+Generated on: 2007-08-31 11:35 UTC.
Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
Modified: trunk/doc/geany.txt
===================================================================
--- trunk/doc/geany.txt 2007-08-30 15:11:33 UTC (rev 1844)
+++ trunk/doc/geany.txt 2007-08-31 11:42:58 UTC (rev 1845)
@@ -1928,7 +1928,7 @@
This should include space (\\s) and tab (\\t).
- *Example:* ``whitespace_chars=\s\t!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~``
+ *Example:* ``whitespace_chars=\s\t\n\r!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~``
Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c 2007-08-30 15:11:33 UTC (rev 1844)
+++ trunk/src/highlighting.c 2007-08-31 11:42:58 UTC (rev 1845)
@@ -37,7 +37,7 @@
/* Whitespace has to be set after setting wordchars. */
-#define GEANY_WHITESPACE_CHARS " \t" "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~"
+#define GEANY_WHITESPACE_CHARS " \t\n\r" "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~"
static gchar *whitespace_chars;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list