Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Thu, 28 May 2015 15:55:21 UTC
Commit: 97a431faf2c146cc79534fb23ab9032d7f435974
https://github.com/geany/geany/commit/97a431faf2c146cc79534fb23ab9032d7f435…
Log Message:
-----------
Update the documentation on wordchars
Modified Paths:
--------------
doc/geany.txt
Modified: doc/geany.txt
12 lines changed, 11 insertions(+), 1 deletions(-)
===================================================================
@@ -4170,7 +4170,8 @@ wordchars
*Example:* (look at system filetypes.\* files)
.. note::
- This overrides the *whitespace_chars* filetypes.common setting.
+ This overrides the *wordchars* filetypes.common setting, and
+ has precedence over the *whitespace_chars* setting.
comment_single
A character or string which is used to comment code. If you want to use
@@ -4652,6 +4653,15 @@ whitespace_chars
*Example:* ``whitespace_chars=\s\t!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~``
+wordchars
+ These characters define word boundaries when making selections
+ and searching using word matching options.
+
+ *Example:* ``wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789``
+
+ .. note::
+ This has precedence over the *whitespace_chars* setting.
+
Filetype extensions
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Thu, 28 May 2015 14:27:32 UTC
Commit: a6e7893c10dd9524aceca23b0a49822b49c57ca6
https://github.com/geany/geany/commit/a6e7893c10dd9524aceca23b0a49822b49c57…
Log Message:
-----------
Enable backquoted strings for go in cpp lexer
In addition, disable (or make less visible) syntax highlighting not related
to go.
Modified Paths:
--------------
data/filetypes.go
Modified: data/filetypes.go
6 lines changed, 5 insertions(+), 1 deletions(-)
===================================================================
@@ -10,7 +10,11 @@ secondary=byte bool rune int int8 int16 int32 int64 uint uint8 uint16 uint32 uin
# these are the Doxygen keywords
docComment=a addindex addtogroup anchor arg attention author authors b brief bug c callergraph callgraph category cite class code cond copybrief copydetails copydoc copyright date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endinternal endlatexonly endlink endmanonly endmsc endrtfonly endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc mscfile n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref related relatedalso relates relatesalso remark remarks result return returns retval rtfonly sa section see short showinitializer since skip skipline snippet struct subpage subsection subsubsection tableofcontents test throw throws todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem
-[lexer_properties=C]
+[lexer_properties]
+lexer.cpp.backquoted.strings=1
+styling.within.preprocessor=1
+lexer.cpp.allow.dollars=0
+fold.preprocessor=0
[settings]
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Thu, 28 May 2015 14:27:32 UTC
Commit: 4665034cb274a2e42d59e4a897f3104a7929fdb6
https://github.com/geany/geany/commit/4665034cb274a2e42d59e4a897f3104a7929f…
Log Message:
-----------
Update go keywords
error was missing in secondary keywords (also sorted alphabetically now)
Add true false iota nil into primary keywords which, while not strictly
speaking keywords (they are predeclared identifiers), are nice to have
highlighted.
Modified Paths:
--------------
data/filetypes.go
Modified: data/filetypes.go
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -4,8 +4,8 @@
[keywords]
# all items must be in one line
-primary=break case chan const continue default defer else fallthrough for func go goto if import interface map package range return select struct switch type var
-secondary=byte bool rune int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 float32 float64 complex64 complex128 uintptr string
+primary=break case chan const continue default defer else fallthrough for func go goto if import interface map package range return select struct switch type var true false iota nil
+secondary=bool byte complex64 complex128 error float32 float64 int int8 int16 int32 int64 rune string uint uint8 uint16 uint32 uint64 uintptr
# these are the Doxygen keywords
docComment=a addindex addtogroup anchor arg attention author authors b brief bug c callergraph callgraph category cite class code cond copybrief copydetails copydoc copyright date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endinternal endlatexonly endlink endmanonly endmsc endrtfonly endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc mscfile n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref related relatedalso relates relatesalso remark remarks result return returns retval rtfonly sa section see short showinitializer since skip skipline snippet struct subpage subsection subsubsection tableofcontents test throw throws todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Thu, 28 May 2015 14:27:32 UTC
Commit: dde13c7a1627fa3e614e4a3900bad8c0f2b43ca4
https://github.com/geany/geany/commit/dde13c7a1627fa3e614e4a3900bad8c0f2b43…
Log Message:
-----------
Syntax-highlight go types
Modified Paths:
--------------
src/document.c
Modified: src/document.c
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -2649,6 +2649,7 @@ void document_highlight_tags(GeanyDocument *doc)
case GEANY_FILETYPES_OBJECTIVEC:
case GEANY_FILETYPES_VALA:
case GEANY_FILETYPES_RUST:
+ case GEANY_FILETYPES_GO:
{
/* index of the keyword set in the Scintilla lexer, for
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).