Branch: refs/heads/master
Author: Colomban Wendling <lists.ban(a)herbesfolles.org>
Committer: elextr <elextr(a)gmail.com>
Date: Tue, 02 May 2017 03:46:28 UTC
Commit: 84253714771f48dbc7fab02f7de43f253734dee2
https://github.com/geany/geany/commit/84253714771f48dbc7fab02f7de43f253734d…
Log Message:
-----------
Haxe: Update keywords (#1216)
Update keywords with https://haxe.org/manual/expression.html#keywords.
`trace` is kept although it's not a keyword, because it was already
there and http://try.haxe.org/ highlights it identically to some other
keywords.
Modified Paths:
--------------
data/filedefs/filetypes.haxe
Modified: data/filedefs/filetypes.haxe
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -3,8 +3,8 @@
[keywords]
# all items must be in one line
-primary=abstract break case catch class const continue trace do else enum extends finally for function goto if implements import in inline instanceof int interface new package private public return static super switch this throw throws transient try typeof using var void volatile while with
-secondary=Bool Dynamic Float Int null Void Enum String
+primary=abstract break case cast catch class continue default trace do dynamic else enum extends extern false for function if implements import in inline interface macro new null override package private public return static switch this throw true try typedef untyped using var while
+secondary=Bool Dynamic Float Int Void Enum String
classes=Array ArrayAccess Class Date DateTools EReg Hash IntHash IntIter Iterable Iterator Lambda List Math Null Protected Reflect Std StringBuf StringTools Type UInt ValueType Xml XmlType
[lexer_properties=C]
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Vasiliy Faronov <vfaronov(a)gmail.com>
Committer: elextr <elextr(a)gmail.com>
Date: Mon, 01 May 2017 22:42:59 UTC
Commit: fefc3a51b95c9c15193bff50c377164c8f8edc68
https://github.com/geany/geany/commit/fefc3a51b95c9c15193bff50c377164c8f8ed…
Log Message:
-----------
Explain the behavior of search keybindings regarding word boundaries (#1478)
Fixes #1467.
Modified Paths:
--------------
doc/geany.txt
Modified: doc/geany.txt
23 lines changed, 15 insertions(+), 8 deletions(-)
===================================================================
@@ -3556,23 +3556,30 @@ Next message Jumps to the line with
Previous message Jumps to the line with the previous message
in the Messages window.
-Find Usage Ctrl-Shift-E Finds all occurrences of the current word (near
- the keyboard cursor) or selection in all open
+Find Usage Ctrl-Shift-E Finds all occurrences of the current word
+ or selection (see note below) in all open
documents and displays them in the messages
window.
-Find Document Usage Ctrl-Shift-D Finds all occurrences of the current word (near
- the keyboard cursor) or selection in the current
+Find Document Usage Ctrl-Shift-D Finds all occurrences of the current word
+ or selection (see note below) in the current
document and displays them in the messages
window.
Mark All Ctrl-Shift-M Highlight all matches of the current
- word/selection in the current document
- with a colored box. If there's nothing to
- find, or the cursor is next to an existing match,
- the highlighted matches will be cleared.
+ word/selection (see note below) in the current
+ document with a colored box. If there's nothing
+ to find, or the cursor is next to an existing
+ match, the highlighted matches will be cleared.
=============================== ========================= ==================================================
+.. note::
+ The keybindings marked "see note below" work like this: if no text is
+ selected, the word under cursor is used, and *it has to match fully*
+ (like when `Match only a whole word` is enabled in the Search dialog).
+ However if some text is selected, then it is matched regardless of
+ word boundaries.
+
Go to keybindings
`````````````````
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).