New Post: Custom Lexer Unicode
It should already account for Unicode characters, a char is 2-bytes in .net, and strings are already in Unicode. Are you sure you don't have a block of 2 bytes that are both NUL ('\0')? If you need to...
View ArticleNew Post: Custom Lexer Unicode
I'm Loading a text file with stream reader which has special characters... It's a Custom Script called Dragon speak for a MMORPG called Furcadia. The Game supports some Unicode characters I'm a novice...
View ArticleNew Post: Custom Lexer Unicode
The degree sign there is actually in UTF-8, but everything I'm looking at says it should work..... If it's shifting the highlighting over then it means that a character isn't getting properly...
View ArticleNew Post: Custom Lexer Unicode
Adding this Code helped the Shifting But now just on the one Line Characters After the Degree sing show up as default Side Note: I added a dragonspeak.xml file and set my customlexer to dragonspeak.....
View ArticleNew Post: Custom Lexer Unicode
New problem with Highlight Alignment I'm attempting to highlight 0-9#- Characters But One Char before the hightleted character is highlighted"DSPK V4.00" The V is Hhisglighted and the dor is...
View ArticleNew Post: Custom Lexer Unicode
Fixed the problem... I was loading an ASCII file into the editor with out converting t to UTF8
View ArticleNew Post: ScintillaNET is used in ExHtmlEditor
Hi, thanks you to ScintillaNET. ScintillaNET is used as text editor in this project (ExHtmlEditor); ExHtmlEditor is a tool for learning and writing HTML. The writer will get instant visual rendering...
View ArticleNew Post: Special AutoComplete
I'm doin a Dynamic Autocomplete list and I'm wondering is it possiple to Match a word or more words in a Phrase IE (0:3) This is a Phrase (0:4) this is phrase two (0:5) this is Phrase 5 And I want to...
View ArticleNew Post: New Feature: Auto Launch AutoComplete
By default, we have to manually run 'AutoComplete.Show()' in the 'CharAdded' event. However, I would like to suggest it to be auto-launch. Default behaviour:If the AutoComplete.List is empty,...
View ArticleNew Post: Adding Items to AutoComplete List on Lexer Level?
Hello there, I'm currently writing a custom Lexer for an Intellisense like dynamic Highlighter. As the logic to achieve this is quite heavy in terms of performance I would like to do the whole dynamic...
View ArticleNew Post: Special AutoComplete
Well, as you do have access to the location of the user's cursor, it should be possible to determine the context from that information.
View ArticleNew Post: Adding Items to AutoComplete List on Lexer Level?
Not from a native lexer, no, it's not possible currently, not as far as I know.
View ArticleNew Post: Adding Items to AutoComplete List on Lexer Level?
Hm ok, thanks for the reply. Then I will have to parse the text twice.
View ArticleNew Post: Why is TextChanged Event fired multiple times?
Hi again, I'm still trying to fix this behaviour as I can't achieve this behaviour on Lexer Level and I inserted the proposed code as specified under the link above... But when I insert the code I just...
View ArticleNew Post: Only highlight keywords within a certain range
Hi, does nobody know if thats possible? Can't I force Scintilla when iterating over the text to colour a parsed item seperatly (an item which is not in the keywords list)? Or can I somehow set int...
View ArticleNew Post: Manually set index of selected AutoComplete Item?
Hi there, I'm currently trying to give my AutoComplete List a little Memory, just like in Visual Studio. So if I have for example this list: sin sinc sinh and I choose and accept the second item,...
View ArticleNew Post: Edit Multple lines
Hello there guys, I'm currently building a text editor for my work and I would like to know if there's a simple way to make the editor Edit multiple lines at the same time (Alt + UP or Down). The...
View ArticleNew Post: BUG: scintilla.CurrentPos and scintilla.Caret.Position bugged
Hello, at the moment I have really hard problems with the Scintilla natives scintilla.CurrentPos and/or scintilla.Caret.Position which both don't work correctly. If you just display the current...
View ArticleNew Post: BUG: scintilla.CurrentPos and scintilla.Caret.Position bugged
Everything you are describing can easily be explained.... What event are you using to trigger the update of your cursor position text box? You weren't specific... but you would definitely need to be...
View Article