Kaydet (Commit) cd9b3973 authored tarafından Enrico Tröger's avatar Enrico Tröger

Set common default "fold.comment" to 0 to disable it. This can be overridden if desired.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4907 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 7f037f71
2010-05-14 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> 2010-05-14 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/classbuilder.c: * plugins/classbuilder.c:
Don't make the 'Create Class' menu item document-sensitive Don't make the 'Create Class' menu item document-sensitive
(patch by Colomban Wendling, thanks). (patch by Colomban Wendling, thanks).
Add namespace support for GTK+ classes. Add namespace support for GTK+ classes.
...@@ -8,6 +8,9 @@ ...@@ -8,6 +8,9 @@
Add typedef of the private structure in the header file instead Add typedef of the private structure in the header file instead
of declaring it of declaring it
(all the above from a patch by Colomban Wendling, thanks). (all the above from a patch by Colomban Wendling, thanks).
* src/highlighting.c:
Set common default "fold.comment" to 0 to disable it. This can
be overridden if desired.
2010-05-11 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> 2010-05-11 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
...@@ -781,7 +781,7 @@ static void styleset_common(ScintillaObject *sci, filetype_id ft_id) ...@@ -781,7 +781,7 @@ static void styleset_common(ScintillaObject *sci, filetype_id ft_id)
sci_set_property(sci, "fold", "1"); sci_set_property(sci, "fold", "1");
sci_set_property(sci, "fold.compact", "0"); sci_set_property(sci, "fold.compact", "0");
sci_set_property(sci, "fold.comment", "1"); sci_set_property(sci, "fold.comment", "0");
sci_set_property(sci, "fold.preprocessor", "1"); sci_set_property(sci, "fold.preprocessor", "1");
sci_set_property(sci, "fold.at.else", "1"); sci_set_property(sci, "fold.at.else", "1");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment