Tagged Questions
Scintilla is a free source code editing component. It includes features especially useful when editing and debugging source code.
13
votes
1answer
5k views
How to Use Scintilla .NET in C# Project?
I am attempting to use Scintilla .NET in a project (I want a good editor + syntax highlighting, etc). Unfortunately, when I reference the binaries in my project, I can't seem to actually use the ...
11
votes
3answers
10k views
Does notepad++ show all hidden characters?
In notepad++ I have set "replace tab with 2 spaces".
When coding in python I copy-pasted some code from the web and it appeared indented correctly. But running the code resulted in indentation ...
6
votes
4answers
16k views
How to multi-line “Replace in files…” in Notepad++ [closed]
If the free source code editor Notepad++ has the feature "Find in files...", that is without the files being opened in the editor, does it not also have the feature "Replace in files..."?
Notepad++ ...
5
votes
2answers
144 views
DScintilla, how to get the highlighter working [noob]
Sorry for bothering with this, but this one has grown over me.
I managed to download and install scintilla wrappers for Delphi (called dscintilla):
http://code.google.com/p/dscintilla/.
My problem ...
5
votes
1answer
592 views
How does custom syntax highlighting in Scintilla work (and why doesn't mine)?
So anyways, I'm trying to implement custom syntax highlighting into a Scintilla control in Visual C#.NET.
I've been told do this through an XML file. I have named it "ScintillaNET.xml" and placed it ...
5
votes
3answers
2k views
How can I highlight text in Scintilla?
I am writing an editor using Scintilla.
I am already using a lexer to do automatic syntax highlighting but now I'd like to mark search results. If I want to mark only one hit I can set the selection ...
4
votes
2answers
123 views
Scintilla Supports Unicode? What about SCI_GETCHARAT?
Does Scintilla really support Unicode? If so, why does SCI_GETCHARAT return a char value (casted to LRESULT)?
4
votes
3answers
2k views
Scintilla .NET - Can't find libraries
I'm trying to get Scintilla .NET working in a C# form I'm making.
I've followed the directions provided in the readme such as adding the Scintilla component to the toolbox, but when I try to drag the ...
3
votes
1answer
905 views
Where did System.Design go?
I am making a C# project in which I am using ScintillaNet, and it says:
The referenced assembly "ScintillaNet" could not be resolved because it has a dependency on "System.Design, Version=4.0.0.0, ...
2
votes
1answer
158 views
ScintillaNET vs AvalonEdit for providing scripting interface for a WPF Application
I am working on a project which includes implementing a scripting interface for my WPF (.Net4) windows Application. I am curious if anyone can suggest a preferred editor, AvalonEdit vs ScintillaNET. ...
2
votes
1answer
135 views
DScintilla, code folding not working for me [noob]
I have this code, to initialize Scintilla with xml lexer:
procedure TfrmWeMain.DScintilla1MarginClick(ASender: TObject; AModifiers,
APosition, AMargin: Integer);
var line_number:integer;
begin
...
2
votes
0answers
127 views
64-bit Scintilla-like text-editing component?
Is there a 64-bit-compatible alternative to Scintilla out there that's open-source?
2
votes
1answer
115 views
Scintilla (QScintilla) 3rd marker define fails
In my class I attempt to define 3 markers, one for errors, one for warnings, and one for breakpoints. This worked well when I was only attempting to define 2 markers, but for some reason the third of ...
2
votes
1answer
635 views
Adding keywords with Scintilla
I"m using ScintillaNET a wrapper for the Scintilla control. I want to change the keywords (for syntax highlighting) for a specific language, I am assuming I have to build my own version of ...
2
votes
1answer
556 views
How do you add a new language setting to ScintillaNet?
I'm writing a C# program that uses a text editor to edit a file format similar to compiled lua with ScintillaNet (rbf). I understand that you can add new languages to Scintilla by adding an Xml file, ...
2
votes
8answers
658 views
I want to make my own source code editor, what are the good choices to make?
I've had it of those dozens of editors which never provides simple things like:
distinguish type keywords and instruction keywords so I can put different colors on them.
being cross platform using a ...
2
votes
1answer
478 views
Alternate row coloring in Scintilla
I'm using wxStyledTextCtrl from wxPython, a wrapper around the Scintilla component.
Is there any way to get alternate row coloring on it (odd rows in one background color and even rows in another ...
2
votes
1answer
954 views
How to syntax highlight using scintilla?
How can I syntax highlight using the scintilla. I have no idea how to use it. I need a code sample that loads scintilla, puts a String[], and runs it in a richtextbox.
2
votes
1answer
1k views
Retrieve text from a scintilla control using SendMessage
I'm attempting to retrieve the document text in Notepad++ using SendMessage in C#. Below is my current code. The first call to SendMessage correctly returns the length of the text. The second call to ...
1
vote
0answers
72 views
ScintillaNET problems in VB.NET
Im using ScintillaNET and i want syntax highlighting.
I Cant seem to figure it out :(
i have tried:
Scintilla.Lexing.Lexer = ScintillaNet.Lexer.Php
...
1
vote
0answers
36 views
Marks in scintilla scrollbar?
Are possible to mark search results/brekpoints/bookmarks in scrollbar of scintilla control? Like it done in Google Chrome or JetBrains IDEs.
1
vote
0answers
56 views
ScintillaNET : Regex keywords, non-alphanumerical keywords
I'd first like to know if it's possible to include keyword containing non-alphanumerical characters? Like @help or +test
Second, is it possible to use regex or wildcards with keywords? Like I'd like ...
1
vote
1answer
128 views
CreateDialog Failed, but why GetLastError returns 0?
I am writing an editor for my project by using scintilla editor component. The editor is for an internal scripting language, having all the basic functionalities like cut,copy, paste etc. As one of ...
1
vote
1answer
51 views
pygtkscintilla auto indent
I'm trying to translate the c++ code and i can't work out what "char linebuf[1000]" is, can some kind sole translate this to python or explain what linebuf is. Thanks! :) Taken from ...
1
vote
0answers
133 views
Switching between Configuration languages in ScintillaNet?
We're trying to implement an editor for a mix between javascript and HTML based on ScintillaNet.
The javascript code is embedded in between <SCRIPT> </SCRIPT> tags...
What i'd like to do ...
1
vote
1answer
379 views
Cannot Style ScintillaNet Text after or before syntax coloring
var scin = new Scintilla();
ScintillaHotspotStyle = scin.Styles.LastPredefined.Index + 1;
scin.Margins[0].Width = 20;
scin.Caret.HighlightCurrentLine = true;
...
1
vote
1answer
781 views
Does notepad++ regular expressions engine (scintilla) support substring escaping (smth. like “\Q.*[escaped string]()+\E”)?
Subj.
I mean that I don't want to paste dozens of '\' into search pattern. Obvious way is to use pair of perl-style special characters:
\Q -- quote (disable) pattern metacharacters till \E
\E -- ...
1
vote
3answers
516 views
Notepad ++ highlights everything that comes after <%= in html.erb files
See the image above.
I'm working on notepad ++.
html.erb files are presented that way, and I don't know how to get rid of the sky blue highlighting that follows <%=.
1
vote
1answer
175 views
Scintilla.NET slow loading
I'm using Scintilla using the .NET wrapper, named Scintilla.NET. When creating an instance of it, i.e.:
Dim c As New ScintillaNet.Scintilla
Me.Controls.Add(c)
it takes almost a complete ...
1
vote
1answer
217 views
Cocoa text editing component (for programmers)
Does anyone know if there is a code editing component for Cocoa, akin to Scintilla?
Or at least with following features: syntax coloring, indentation(, brace matching, whitespace showing, line ...
1
vote
1answer
228 views
Text replacement in ScintillaNet
I have a ScintillaNet text editing control. I want to replace tabs with 4 x space as the user is typing in the control. I'm not exactly sure where to do this as I'm not very familiar with the control. ...
1
vote
0answers
326 views
QScintilla: how to create a new lexer or modify an existing one?
I find the default lexer for C++ highlighting not very specific enough.
I want to at least be able to specify a different color for:
type keyword (void, int, float etc)
instruction keyword (if while ...
1
vote
1answer
647 views
How to reset all keyboard shortcuts in notepad++?
I have removed the shortcut for SCI_DELETEBACK and as such my backspace key now outputs a backspace character rather than actually deleting characters.
For whatever reason, it's not possible to ...
1
vote
1answer
541 views
Adding a new lexer to scintilla/scite (…and eventually wxPython StyledTextCtrl)
Has anyone of you successfully added a lexer to scintilla?
I have been following the short instructions at http://www.scintilla.org/SciTELexer.html - and even discovered the secret extra ...
1
vote
1answer
73 views
Gain Access to Mouse Clicks in C# Component
I am using the ScintillaNET component and I am attempting to capture clicks in the margin, as this will determine how I respond. Unfortunately, the margins capture the mouse events (and don't provide ...
1
vote
2answers
389 views
wxWidgets: how to change caret style in StyledTextCtrl (sending a command to scintilla)
wxWidgets has wxStyledTextCtrl which (as I understand) uses Scintilla behind the scenes
I don't know much about Scintilla API, but I kinda have the idea that you issue commands to it.
In particular, ...
1
vote
1answer
178 views
QScintilla scrollbar
When I add a QsciScintilla object to my main window the horizontal scrollbar is active and super wide (tons of apparent white space). Easy fix?
0
votes
0answers
12 views
IDE with C++Builder xe 2 & Scintilla
I just starting a new project, what it is ? I want to develop a new IDE and we investigate ( ) and found Scintilla ( is very usefull all the features this library offer ). So I decide to start looking ...
0
votes
1answer
31 views
Scintillia marker background coming out a different colour than expected
I'm trying to set Markerbackgrounds for a notepad++ plugin I'm writting so certain lines can be highlighted. The colours are stored as ints which are converted from Color.ToArgb():
int colour = ...
0
votes
0answers
34 views
inserting the control to wx.FlexGridSizer
I am adding some control like this :
| statictext| stc1 |
| statictext| stc2 |
| statictext| stc3 |
adding the control
self.text = ...
0
votes
0answers
38 views
Python wx.stc custom highlighting
By lack of answers on many occasions, and the good answers I have received here, here's my question.
I'm writing a program for the ABC music notation language(sample given at EOP). This is not a ...
0
votes
1answer
67 views
SciTE text editor, anyone know how to find documentation for advanced techniques?
I have chosen to use SciTE as my text editor. I know its a powerful editor and I have seen videos online where people are using advanced techniques with it. I really want to know how to use the editor ...
0
votes
1answer
135 views
How do I do custom syntax highlighting in scintilla?
So I was told that I should use scintilla for custom syntax highlighting...
So, how exactly do I implement it (give me an example - preferably in C#)?
0
votes
1answer
111 views
Does Scintilla need a directive? I keep getting an error?
So, when I drag in Scintilla to my C# form, and try to run it, I get the error:
The type or namespace name
'ScintillaNet' could not be found (are
you missing a using directive or an
assembly ...
0
votes
0answers
149 views
Adding Scintilla language?
I follow the tutorial on their site, however I can't add any new language. I have the code below in skilla.xml, and I have CustomLocation set to skilla.xml and Language set to cz, however nothing at ...
0
votes
1answer
114 views
Finding STC module using CMake - C++/wxWidgets
It looks like FindwxWidgets.CMake can't find stc module from contrib. I have the following in my CMakeList file.
find_package(wxWidgets COMPONENTS core base stc REQUIRED)
This is failing with ...
0
votes
0answers
106 views
How I can expand collapsed code block in Scintilla.Net?
How I can expand collapsed code block in Scintilla.Net?
For example I found something via code:
Range foundRange = FindReplace.FindNext(......
It is located in collapsed block. How I can expand ...
0
votes
0answers
74 views
CallTip in QScintilla on russian
How can I write russian text into calltip of QScintilla? I try this code:
SendScintilla(SCI_CALLTIPSHOW, position, ...
0
votes
1answer
62 views
is it possible to make the caret jump between highlighted text snippets in Scintilla?
I want to know if it is possible with Scintilla API to make something like the following.
I have the following call:
cook(foo , bar);
where foo and bar are only highlighted and the caret is at the ...
0
votes
3answers
177 views
Scintilla: How do you find the byte position given a specific character position
Given a specific character index on a line, e.g. 10th character on line 3, is there an easy way to calculate Scintilla's 'position' of that character?
It's straight forward when using ASCII ...