Branch: refs/heads/master
Author: Nick Treleaven <ntrel002(a)gmail.com>
Committer: GitHub <noreply(a)github.com>
Date: Thu, 27 Apr 2023 01:17:07 UTC
Commit: d3b363b91e83c78da59881a28ce7186926983979
https://github.com/geany/geany/commit/d3b363b91e83c78da59881a28ce7186926983…
Log Message:
-----------
[docs] Add/tweak links for workspace section (#3471)
Modified Paths:
--------------
doc/geany.txt
Modified: doc/geany.txt
6 lines changed, 3 insertions(+), 3 deletions(-)
===================================================================
@@ -229,17 +229,17 @@ The workspace has the following parts:
* An optional toolbar.
* An optional sidebar that can show the following tabs:
- * Documents - A document list, see `Document list views`_.
+ * Documents - A `document list <#document-list-views>`_.
* Symbols - A list of symbols in your code.
* The main editor window.
* An optional message window which can show the following tabs:
* Status - A list of status messages.
* Compiler - The output of compiling or building programs.
- * Messages - Results of 'Find Usage', 'Find in Files' and other actions
+ * Messages - Results of `Find Usage`_, `Find in Files`_ and other actions
* Scribble - A text scratchpad for any use.
- * Terminal - An optional terminal window.
+ * Terminal - An optional `terminal window <#virtual-terminal-emulator-widget-vte>`_.
* A status bar
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Nick Treleaven <ntrel002(a)gmail.com>
Committer: GitHub <noreply(a)github.com>
Date: Thu, 27 Apr 2023 01:10:48 UTC
Commit: cec97d3d09aab59e65ced714abd56840afbeda70
https://github.com/geany/geany/commit/cec97d3d09aab59e65ced714abd56840afbed…
Log Message:
-----------
Add docs for calltips (#3470)
Modified Paths:
--------------
doc/geany.txt
Modified: doc/geany.txt
11 lines changed, 11 insertions(+), 0 deletions(-)
===================================================================
@@ -1060,6 +1060,17 @@ symbols (e.g. C/C++ parsers) and for these parsers scope autocompletion
works also for local variables.
+Calltips
+^^^^^^^^
+A handy tooltip is shown when typing ``(`` after a symbol name when the
+symbol has a parameter list. The tag parser for the filetype must support
+parsing parameter lists.
+Calltips can also be shown with a `keybinding <#editor-keybindings>`_.
+
+When there is more than one matching symbol, arrows are shown which can
+be clicked to cycle through the signatures.
+
+
User-definable snippets
^^^^^^^^^^^^^^^^^^^^^^^
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Dominic Hopf <dmaphy(a)googlemail.com>
Committer: GitHub <noreply(a)github.com>
Date: Tue, 25 Apr 2023 06:54:38 UTC
Commit: 19f8bcb1ce54530233bc022645df7be9daf57b28
https://github.com/geany/geany-themes/commit/19f8bcb1ce54530233bc022645df7b…
Log Message:
-----------
Merge pull request #56 from CollinseyNyaga/grey8-new-theme
Added grey8 config and screenshot
Modified Paths:
--------------
colorschemes/grey8.conf
screenshots/grey8.png
Modified: colorschemes/grey8.conf
116 lines changed, 116 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,116 @@
+#
+# Copyright 2023 Collins Mutugi <monsieurcollmut(a)gmail.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+
+[theme_info]
+name=grey8
+description=A simple gray theme.
+# incremented automatically, do not change manually
+version=6
+author=Collins Mutugi
+url=
+# list of each compatible Geany release version
+compat=1.22;1.23;1.23.1;1.24
+
+[named_styles]
+
+default=#FDFDFD;#888888;false;false
+error=#c00
+
+selection=#000000;#E2E2E2;true;true
+current_line=#000;;false
+brace_good=default
+brace_bad=default,bold
+margin_line_number=#C7C7C7
+margin_folding=default
+fold_symbol_highlight=#000
+indent_guide=default
+caret=#ccc;#000;true;true
+marker_line=default,italic
+marker_search=;#000
+marker_mark=#000;#000
+call_tips=#000;#000;true;true
+white_space=#104e10;;true
+
+# Programming languages
+#-------------------------------------------------------------------------------
+
+comment=#C1C1C1
+comment_doc=comment
+comment_line=comment
+comment_line_doc=comment_doc
+comment_doc_keyword=comment_doc,bold
+comment_doc_keyword_error=comment_doc,italic
+
+number=#FFCC25
+number_1=number
+number_2=number_1
+
+type=#FFCC25;;true
+class=type
+function=default
+parameter=default
+
+keyword=#404040;;true
+keyword_1=keyword
+keyword_2=keyword_1
+keyword_3=keyword_1
+keyword_4=keyword_1
+
+identifier=default
+identifier_1=identifier
+identifier_2=identifier_1
+identifier_3=identifier_1
+identifier_4=identifier_1
+
+string=#FFCC25;;true
+string_1=string
+string_2=string_1
+string_3=default
+string_4=default
+string_eol=string_1,italic
+character=string_1
+backticks=string_2
+here_doc=string_2
+
+scalar=string_2
+label=default,bold
+preprocessor=default
+regex=number_1
+operator=default
+decorator=string_1,bold
+other=default
+
+# Markup-type languages
+#-------------------------------------------------------------------------------
+
+tag=#FFF
+tag_unknown=tag,bold
+tag_end=tag,bold
+attribute=#FFF;;true
+attribute_unknown=attribute,bold
+value=string_1
+entity=default
+
+# Diff
+#-------------------------------------------------------------------------------
+
+line_added=#000
+line_removed=#c00
+line_changed=#00c
+
Modified: screenshots/grey8.png
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: CollinseyNyaga <monsieurcollmut(a)gmail.com>
Committer: CollinseyNyaga <monsieurcollmut(a)gmail.com>
Date: Mon, 24 Apr 2023 20:59:30 UTC
Commit: 708c8479056434ef1c16a7fd99250d301b6de5f4
https://github.com/geany/geany-themes/commit/708c8479056434ef1c16a7fd99250d…
Log Message:
-----------
Added grey8 config and screenshot
Modified Paths:
--------------
colorschemes/grey8.conf
screenshots/grey8.png
Modified: colorschemes/grey8.conf
116 lines changed, 116 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,116 @@
+#
+# Copyright 2023 Collins Mutugi <monsieurcollmut(a)gmail.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+
+[theme_info]
+name=grey8
+description=A simple gray theme.
+# incremented automatically, do not change manually
+version=6
+author=Collins Mutugi
+url=
+# list of each compatible Geany release version
+compat=1.22;1.23;1.23.1;1.24
+
+[named_styles]
+
+default=#FDFDFD;#888888;false;false
+error=#c00
+
+selection=#000000;#E2E2E2;true;true
+current_line=#000;;false
+brace_good=default
+brace_bad=default,bold
+margin_line_number=#C7C7C7
+margin_folding=default
+fold_symbol_highlight=#000
+indent_guide=default
+caret=#ccc;#000;true;true
+marker_line=default,italic
+marker_search=;#000
+marker_mark=#000;#000
+call_tips=#000;#000;true;true
+white_space=#104e10;;true
+
+# Programming languages
+#-------------------------------------------------------------------------------
+
+comment=#C1C1C1
+comment_doc=comment
+comment_line=comment
+comment_line_doc=comment_doc
+comment_doc_keyword=comment_doc,bold
+comment_doc_keyword_error=comment_doc,italic
+
+number=#FFCC25
+number_1=number
+number_2=number_1
+
+type=#FFCC25;;true
+class=type
+function=default
+parameter=default
+
+keyword=#404040;;true
+keyword_1=keyword
+keyword_2=keyword_1
+keyword_3=keyword_1
+keyword_4=keyword_1
+
+identifier=default
+identifier_1=identifier
+identifier_2=identifier_1
+identifier_3=identifier_1
+identifier_4=identifier_1
+
+string=#FFCC25;;true
+string_1=string
+string_2=string_1
+string_3=default
+string_4=default
+string_eol=string_1,italic
+character=string_1
+backticks=string_2
+here_doc=string_2
+
+scalar=string_2
+label=default,bold
+preprocessor=default
+regex=number_1
+operator=default
+decorator=string_1,bold
+other=default
+
+# Markup-type languages
+#-------------------------------------------------------------------------------
+
+tag=#FFF
+tag_unknown=tag,bold
+tag_end=tag,bold
+attribute=#FFF;;true
+attribute_unknown=attribute,bold
+value=string_1
+entity=default
+
+# Diff
+#-------------------------------------------------------------------------------
+
+line_added=#000
+line_removed=#c00
+line_changed=#00c
+
Modified: screenshots/grey8.png
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Nick Treleaven <ntrel002(a)gmail.com>
Committer: Nick Treleaven <ntrel002(a)gmail.com>
Date: Tue, 11 Apr 2023 16:06:27 UTC
Commit: 92d8d22878aa25db956c3a578cfe82962a8bc518
https://github.com/geany/geany/commit/92d8d22878aa25db956c3a578cfe82962a8bc…
Log Message:
-----------
[filetypes] Update Kotlin basic types
Modified Paths:
--------------
data/filedefs/filetypes.Kotlin.conf
Modified: data/filedefs/filetypes.Kotlin.conf
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -4,7 +4,7 @@
# https://kotlinlang.org/docs/reference/keyword-reference.html
primary=abstract assert break case catch class const continue default do else enum extends final finally for goto if implements import instanceof interface native new package private protected public return static strictfp super switch synchronized this throw throws transient try volatile while true false null as fun in object typealias val var when by constructor delegate dynamic field file get init param property receiver set setparam where actual annotation companion const crossinline data expect external infix inline inner internal lateinit noinline open operator out reified sealed suspend tailrec vararg field it
# https://kotlinlang.org/docs/reference/basic-types.html
-secondary=Double Float Long Int Short Byte NaN Void
+secondary=Boolean Byte Char Double Float Long Int Short String UByte UInt ULong UShort Void
# documentation keywords for javadoc
doccomment=author deprecated exception param return see serial serialData serialField since throws todo version
typedefs=
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Nick Treleaven <ntrel002(a)gmail.com>
Committer: Nick Treleaven <ntrel002(a)gmail.com>
Date: Wed, 12 Apr 2023 11:59:41 UTC
Commit: 9c146b912b3b98d2123dd65c071d0aa54704cc5d
https://github.com/geany/geany/commit/9c146b912b3b98d2123dd65c071d0aa54704c…
Log Message:
-----------
Add Any, Nothing, Unit; Remove Void
Modified Paths:
--------------
data/filedefs/filetypes.Kotlin.conf
Modified: data/filedefs/filetypes.Kotlin.conf
4 lines changed, 3 insertions(+), 1 deletions(-)
===================================================================
@@ -3,8 +3,10 @@
[keywords]
# https://kotlinlang.org/docs/reference/keyword-reference.html
primary=abstract assert break case catch class const continue default do else enum extends final finally for goto if implements import instanceof interface native new package private protected public return static strictfp super switch synchronized this throw throws transient try volatile while true false null as fun in object typealias val var when by constructor delegate dynamic field file get init param property receiver set setparam where actual annotation companion const crossinline data expect external infix inline inner internal lateinit noinline open operator out reified sealed suspend tailrec vararg field it
+
# https://kotlinlang.org/docs/reference/basic-types.html
-secondary=Boolean Byte Char Double Float Long Int Short String UByte UInt ULong UShort Void
+secondary=Any Boolean Byte Char Double Float Long Int Nothing Short String UByte UInt ULong Unit UShort
+
# documentation keywords for javadoc
doccomment=author deprecated exception param return see serial serialData serialField since throws todo version
typedefs=
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).