scintilla Questions

7

Solved

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 err...
Eun asked 20/4, 2009 at 9:28

4

I am writing an editor using Scintilla. I am already using a lexer to do automatic syntax highlighting but now I would like to mark search results. If I want to mark only one hit I can set the sel...
Hallucinate asked 18/9, 2008 at 13:34

4

Solved

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 also have the feature "Replace in files..."? Notepad++ is...
Energetics asked 1/1, 2009 at 11:23

1

I would like to use scintilla on a Qt project, but I don't know how to start, do I have to include the source files? or is there some library that I can reference? The only installation examples I...
Diffuser asked 5/5, 2019 at 5:28

2

Consider this mcve: import math import sys import textwrap import time from pathlib import Path from collections import defaultdict from PyQt5.Qsci import QsciLexerCustom, QsciScintilla from PyQt...
Wilburn asked 20/4, 2019 at 17:5

1

Solved

Consider this snippet: import sys from PyQt5.Qsci import QsciScintilla from PyQt5.Qt import * if __name__ == '__main__': app = QApplication(sys.argv) view = QsciScintilla() # http://www.scin...
Kira asked 18/4, 2019 at 12:1

3

Solved

I'm trying to implement a toggle comment feature in QScintilla that works with multiple selection. Unfortunately I don't know very well how to do it, so far I've come up with this code: import sys...
Z asked 15/5, 2018 at 17:15

3

Solved

I have a C# WPF 4.51 app. As far as I can tell, you can not bind to a property belonging to an object that is the child of a WPF WindowsFormsHost control. (If I am wrong in this assumption please s...
Irmine asked 12/10, 2015 at 5:59

5

Solved

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 Sc...
Guelph asked 6/3, 2010 at 19:53

2

Solved

I have a simple VB.NET application using Scintilla. I don`t know how can I make the control auto scroll when text is added to it. Can anyone help? Thanks
Grampositive asked 24/5, 2010 at 17:3

1

Solved

The following code I use sets a Scintilla window for folding: local SCI_STYLECLEARALL = 2050 local SCI_SETMARGINMASKN = 2244 local SCI_SETMARGINSENSITIVEN = 2246 local SCI_STYLESETFORE = 2051 loca...
Purim asked 20/5, 2014 at 16:36

1

Solved

If I want to add new keywords in the Styler configuration for the "c" language suppose, and I have my custom defined data type. for eg: uint_8 a; uint_16 b; uint_32 c; uint_12bla bla;* is it pos...
Thursday asked 13/12, 2013 at 10:3

1

Is there a 64-bit-compatible alternative to Scintilla out there that's open-source?
Oidium asked 4/9, 2011 at 1:24

2

Solved

Setting a Scintilla.Net textbox with a string and scrolling to last line doesn't work. This Q & A How make autoscroll in Scintilla? has the answer but it wont work at the same time as setting...
Escapism asked 23/4, 2013 at 0:6

1

Solved

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...
Demimondaine asked 20/12, 2011 at 15:17

2

Solved

I have installed DScintilla, Delphi VCL wrapper for Scintilla code editing component, but I can't find any basic example of how to use it. Could you post some basic code example of syntax highligh...
Bullnecked asked 18/10, 2011 at 19:37

3

Solved

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 <%=.
Lumbago asked 18/12, 2010 at 23:36

1

Solved

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 ...
Renaldo asked 20/6, 2011 at 22:54

2

Solved

Does Scintilla really support Unicode? If so, why does SCI_GETCHARAT return a char value (casted to LRESULT)?
Jaehne asked 29/5, 2011 at 17:3

1

Solved

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....
Canaille asked 12/6, 2010 at 23:30

3

Solved

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 t...
Longdistance asked 28/10, 2009 at 18:13
1

© 2022 - 2025 — McMap. All rights reserved.