Questions tagged [scintilla]

Scintilla is a free source code editing component. It includes features especially useful when editing and debugging source code.

Scintilla is a free source code editing component. It comes with complete source code and a license that permits use in any free project or commercial product.

As well as features found in standard text editing components, Scintilla includes features especially useful when editing and debugging source code. These include support for syntax styling, error indicators, code completion and call tips. The selection margin can contain markers like those used in debuggers to indicate breakpoints and the current line. Styling choices are more open than with many editors, allowing the use of proportional fonts, bold and italics, multiple foreground and background colours and multiple fonts.

Scintilla has a reference implementation called SciTE, and is used in Notepad2, Notepad++, TortoiseSVN, and numerous other projects.

250 questions
0
votes
1 answer

Scintilla error message on unrelated code

First off, ScintillaNET v2.6 was installed as a control and I have been able to use it and compile, so I assume the installation is ok: This app is targeting the full .NET 4.0 framework, not the client profile) Environment variable ScintillaNT…
Sylverdrag
  • 8,898
  • 5
  • 37
  • 54
0
votes
1 answer

Adding text to Scintilla without losing formatting

I'm starting development using scintilla in VB.NET and I'm creating a serial terminal program. The Scintilla control shows what data has been received in my computer serial port. I need to programmatically add text to control. When I…
RHaguiuda
  • 3,207
  • 9
  • 37
  • 55
0
votes
1 answer

How do I set a variable to a regex string in Python Script for notepad++?

I am trying to set a variable (x) to a string in a text file using regular expression. Within the file I am searching there exists several lines of code and always one of those lines is a ticket number WS########. Looks like…
Mason
  • 17
  • 1
  • 4
0
votes
1 answer

link in scintillaNET editor possibility

How to give link to a text which is typed in scintillaNET editor? Is it possible. Any suggestion would be appreciable. Thanks in advance
parthi
  • 734
  • 1
  • 4
  • 13
0
votes
1 answer

Scintilla.NET regular expression based syntax highlighing

Is it possible to use regular expressions to define syntax highlighting in Scintilla? And if so, how to do it? I have a custom language to process, which cannot be described in simple terms of keywords and delimiters. The meaning of particular…
Harry
  • 4,524
  • 4
  • 42
  • 81
0
votes
2 answers

ScintillaNet - Working out what line a user clicks on

I'm using the ScintillaNet text box control to display some search results and I want to be able to detect when the user double clicks / right clicks on a line in the results so that I can work out which hit they are clicking on. Does anyone have…
Justin
  • 84,773
  • 49
  • 224
  • 367
0
votes
2 answers

Unable to Affect Scintilla Control Programmatically at Runtime

I'm attempting to use the ScintillaNET control in an application I am working on. I drag and drop the control into my form and run form. The control appears on the form. This is good. In addition, if I set any of the properties in the control's…
JasCav
  • 34,458
  • 20
  • 113
  • 170
0
votes
1 answer

How to link Scintilla?

I downloaded bait from Scintilla's documentation page but whenever I try to compile it using the provided makefile, it fails with this error: $ make gcc `pkg-config --cflags gtk+-2.0` -I../scintilla/include -DGTK -DSCI_LEXER -W -Wall -c bait.c -o…
0
votes
2 answers

Notepad++ plugin find end of file and full path?

How do I find the end of the file and the full file path in a scintilla document by writing plugins for notepad++ in c#. I tried the following code: string nEnd; Win32.SendMessage(nppHandle, NppMsg.NPPM_GETFULLCURRENTPATH, 0, out nEnd); but…
Me5
  • 1,705
  • 3
  • 13
  • 19
0
votes
1 answer

How do I get XCode to build a project with Objective-C++ in it?

I added the Scintilla framework successfully to my XCode project (i.e. it finds the header files correctly), but because it is written in Objective-C++ it doesn't compile. I get 8 syntax errors because of ::s. I already found you can't include…
11684
  • 7,356
  • 12
  • 48
  • 71
0
votes
1 answer

Is there anyway to enable MultiSelect in the StyledTextCtrl

I've noticed that the StyledTextControl (Scintilla basically) in wxWidgets has a great feature that allows multi-selections of text, just like TextMate. However wxRuby doesn't seem to have the function calls to support that feature. I'm wonder if…
Matthew Stopa
  • 3,793
  • 6
  • 42
  • 51
0
votes
2 answers

ibtool failed with exception: Some Object IDs were duplicated

I just downloaded Scintilla and thought I'd first compile and run the test project, to see it for myself. Everything compiled alright, so that was a relief, but then XCode hit me with ibtool failed with exception: Some Object IDs were duplicated. I…
11684
  • 7,356
  • 12
  • 48
  • 71
0
votes
2 answers

Is it possible to tell Scintilla to ignore certain keystrokes and pass them to the parent window?

I would like Scintilla to ignore certain key combinations like, Ctrl+Enter or Ctrl+D, and to notify the parent window when they are entered. I read through the documentation and could not figure out how to do this. Is this possible?
Lawrence Barsanti
  • 31,929
  • 10
  • 46
  • 68
0
votes
2 answers

Get visible lines in Scintilla.NET component

How can I get the first visible (top) and last visible (bottom) lines number for Scintilla component in C#? For example, if I scroll the text and I am able to see lines 5-41 (no folding, it is the number of lines which are shown by the component at…
Valentin Radu
  • 629
  • 1
  • 11
  • 26
0
votes
1 answer

Scintilla Horizontal Scrollbar

How do I make it appear as if it were automatic like the vertical one? The window is 300 wide so I tried setting SCI_SETSCROLLWIDTH to 300 and then less than 300 with SCI_SETSCROLLWIDTHTRACKING turned on but the scrollbar will either still always…
Col_Blimp
  • 779
  • 2
  • 8
  • 26