New Post: Autocomplete with underscore bugs
Hello, the Autocompletion seems to bug for words that contain an underscore. If I have the following list: test test_2 testvar and I enter "testv" then the Autocompletion list gets closed because no...
View ArticleNew Post: Autocomplete with underscore bugs
This sounds like a legitimate bug, have you filed it as a bug report?
View ArticleNew Post: Autocomplete with underscore bugs
I have posted it in the issue section , thanks for the reply.
View ArticleNew Post: Autocomplete with underscore bugs
Sorry I couldn't help more, my computer's graphics card drivers have gone awry and I can no longer launch Visual Studio on my main laptop.
View ArticleNew Post: Jump to start/end of block (code fold)
Hi, I can't find any built in support for this, but perhaps I'm just missing something. Any idea how to support jumping to the start/end of a block, e.g. if on the opening brace of an "if" block, it...
View ArticleNew Post: Only highlight keywords within a certain range
Hello, I wounder if it is possible to highlight keywords only within a certain range (dynamically)? If I have something like this text for example:private class myClass { // Within this class, myInt...
View ArticleNew Post: [Solved] How to do fold / unfold all actions?
I found a solution:void FoldAll(string target) { foreach(ScintillaNET.Line linear in ActiveDocument.Scintilla.Lines) { if(linear.IsFoldPoint && linear.FoldExpanded &&...
View ArticleNew Post: Color of selection while window is inactive
I know that we can change the color of selected text but only if the window is active. When the window is inactive the color of the selection will change (depending on the theme in windows I think) to...
View ArticleNew Post: Color of selection while window is inactive
I believe the properties you're looking for are called Scintilla.Selection.BackColorUnfocused and Scintilla.Selection.ForeColorUnfocused. Jacob
View ArticleNew Post: Color of selection while window is inactive
Oh, how could I miss that. Thanks :)
View ArticleNew Post: How to keep up with the location of a range when text changes
Please bear with me while I explain what I'm doing... I'm using ScintillaNet in a tabbed editor. My find-replace tool includes a "Find in All Open Docs" function. When used this opens a list...
View ArticleNew Post: How to keep up with the location of a range when text changes
Okay, figured that out. Indicators. Duh.
View ArticleNew Post: default Python lexer not supporting line comment coloring?
Just checking to see if I'm overlooking something silly here... I've selected Python as my lexer and I'd assume out of the box # would be treated as a line comment and it'd show up as green - other...
View ArticleNew Post: default Python lexer not supporting line comment coloring?
Sorry, but I think the comment prefix character is hardcoded into the native C++ scintilla control. You could 1) try writing a custom lexer or 2) download the scintilla source...
View ArticleNew Post: Problem dragging text with version 2.5.2
With version 2.5.0 I could select and drag text without issue. But I can't seem to make it work with version 2.5.2. What do I need to do to get it working?
View ArticleNew Post: Problem dragging text with version 2.5.2
The same question was already discussed on this thread:http://scintillanet.codeplex.com/discussions/437175 It would seem that in an effort to fix file drag and drop, we messed up drag and drop of text...
View ArticleNew Post: Prototype Lexer/Highlighter Available
I'm using a Modified for of PwerLexer converted to VB Dragging the Virtical Scroll Bar Freezes the Application till it catches up... Arrow Keys,MouseWheel and Scroll Buttons are smooth scrolling. Is...
View ArticleNew Post: Prototype Lexer/Highlighter Available
@Gerolkae, Your "scrolling performance" issue is really a "lexer performance" issue. To successively attempt to match regular expressions against the unstyled content will simply take too long. In...
View ArticleNew Post: Custom Lexer Unicode
I'm Building a custom lexer around the winforms CustomLexer class and I've noticed ConsumeString Doesn't account for Unicode Bytes... ConsumeString(STYLE_STRING, '\0', false, false, '}'); Has Coloring...
View Article