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

learn more… | top users | synonyms

0
votes
0answers
14 views

Scintilla: single line mode

It is possible to set the single line mode for Scintilla? In the documentation, I found a mention about it, but can't find how to turn on.
1
vote
1answer
47 views

Trying to create a new tab from notepad++ .NET plugin

I am writing a Notepad++ plugin, and need to create a new tab, for a new file. I haven't been able to find anything covering this in the documentation. The closest I have come is: IntPtr ...
0
votes
1answer
36 views

How to use Scintilla for Unicode strings

I set the codepage to UTF8 with SCI_SETCODEPAGE before using scintilla but scintilla is not treating strings as Unicode. I’m seeing some code which is actually explicitly converting the lparam data ...
0
votes
0answers
35 views

Custom keywords colors with Scintilla

I'm proving Scintilla to make a custom language syntax highlight. The problem is that I'm not using a certain language; I'm trying to colorize a script languaje from a open source game. I have the ...
0
votes
2answers
68 views

Vertical scroll Scintilla Textbox during Text Changed event

Here is a complete VS2010 project to reproduce the problem: http://temp-share.com/show/dPf3aqi7W Setting a Scintilla.Net textbox with a string and scrolling to last line doesn't work. This Q & ...
0
votes
0answers
19 views

How to capture Ctrl+S message from Scintilla control in Win32 app?

I am working on a win32 project that uses Scintilla to customize our own text editor. So far, it can accepts inputs and normal edit operations such as redo, undo, copy and paste. I set accelerator key ...
0
votes
0answers
18 views

Syntax highlighting delimited python code

My application supports "interpolated"* python code in certain textboxes, surrounded by braces: The sum of numbers from one to five is {sum(range(1,6))}. It's been suggested that I implement syntax ...
0
votes
0answers
36 views

Wx StyledTextCtrl Line numbers, hiding the first line

I have the same problem as the one mentioned here: wxPython StyledTextCtrl line numbers not starting at 1 There is a solution posted there: hiding lines with "\n" solve the problem, but I cant hide ...
0
votes
1answer
52 views

Delete and replace the last line in ScintillaNET

I need a code snippet to delete the last line of ScintillaNET control and append a line to it. I tried this but didn't work: scintilla1.GoTo.Line(scintilla1.Lines.Count); int ...
1
vote
2answers
38 views

Scintilla Control Saving bookmarks to file

I am trying to save the indicators (bookmarks) for the file being edited in scintilla so that they are reloaded next time you open a file. This is my code snippet: List<int> bookmarks = new ...
0
votes
1answer
77 views

Capturing enter key for WxPython Styled Text Control

Using a StyledTextControl in wxpython by importing wx.stc, how can i capture the Enter Key as an event? i've tried several methods but all seem to be saying errors or not working at all. so fair ive ...
0
votes
2answers
72 views

RGBA Image format (as used by Scintilla)

I'm working with Scintilla (not ScintillaNET), and I'm trying to set the images used in the auto complete list. Scintilla requires a string of bytes/pixels in the RGBA format. Scintilla's description ...
0
votes
1answer
57 views

Using SCI_SEARCHINTARGET in Qscintilla/PyQt4

I'm trying to search for the position of a string in a Qscintilla window. Here's a piece of (runnable) mock code: import sys from PyQt4 import QtGui, Qsci app = QtGui.QApplication(sys.argv) window ...
1
vote
0answers
66 views

Hiding lines in ScintillaNET control

I'm using the following code to hide lines in my scintillaNET control: if (cShowProcess.SelectedItem != null) { for (int i = 0; i < scintilla1.Lines.Count; i++) { ...
0
votes
0answers
30 views

Scintilla memory leak in Text property

I'm using the Scintilla library for searching code comments in a lot of files, so what I do is I create a Scintilla control once and then change Text property. After I change Text property of the ...
2
votes
0answers
66 views

Is there a version of scintilla (scilexer.dll) that includes “style”(CSS) lexing for HTML?

I'm fairly sure that "text-highlighting" (through separating the different kinds of text) is part of the scintilla lexer's job. If it's not and is instead program specific please correct me. The ...
0
votes
2answers
124 views

halt in backgroundworker thread when using scintilla NET to not freeze the GUI

The background worker halts when invoked to append text to a scintilla Controls, here is the partial code. After adding try catch logic, i still didn't get any exceptions! private delegate void ...
0
votes
2answers
92 views

Notepad++ loses HTML tags highlighting after any <% of Mako Templates tag. How to disable this behaviour?

Let me attach a picture to explain: So after any tag of Mako (<%block, <%include, ets.) it makes the subsequent HTML code whole sole-colored black. I don't know what to do with this. Options ...
2
votes
1answer
77 views

scintilla.NET bookmark API

How do you use bookmarks and navigate through them and not get lost in index ?! this is the bookmark code snippet: private void btnBM(object sender, EventArgs e) { Line currentLine = ...
0
votes
1answer
270 views

Highlighting rich text box with huge text efficiently in a windows form

I have huge text files that I process line by line and add the results to a StringBuilder so i don't hold the main form with loading single lines of text to it. Once processing is done I dump the ...
1
vote
1answer
259 views

Change Syntax Color in Scintilla.NET

I've been messing around with Scintilla.NET for an hour or two, but I've ran into a problem that seems like it should be easy to solve. I can't seem to find a way to change the actual highlight color ...
0
votes
2answers
75 views

wxPython and STC Margins - Top and Bottom

Is there any way of implementing padding in the top and bottom of my program for 3 and 4? Or is there a workaround like adding \n etc.... I feel asif the line numbers and the Styled text are too ...
-1
votes
1answer
53 views

Setting Margins with Styled Text Control

I know you can use stc.SetMarginLeft(INT) to set a margin on the left of your styled text control. But is there an option to set margins on the top and bottom, not just SetMarginLeft and ...
0
votes
1answer
54 views

Insert a space into my stc.StyledTextCtrl so the code isnt so close to the line numbers

I am trying to achieve a space where the underscore is on line 1 and line 5 to provide abit of padding between the line numbers and the code so it doesnt look so cluttered. how would i achieve this? ...
1
vote
1answer
61 views

Padding in wxStyledTextControl, no clumpiness

i am trying to achieve a second margin into my wxpython code editor like so http://i.imgur.com/mFHtI.png and i would like a bit of padding above the code so the code isnt so close to the roof of the ...
-4
votes
1answer
81 views

Applying padding and expanding margin with line numbers in wxStyledTextCtrl [closed]

Hi i am building a simple code editor with wxpython. So far the line numbers are there, but after it reaches 99, the text goes off the screen and wont display the hundreds. Id like padding so the ...
0
votes
1answer
144 views

Implementing a wx.Styled Text Control in wxPython for Application

I am creating a very basic IDE for wxpython and python, and at the moment I have a big wx.textctrl.I am typing my code into, I heard it wasn't a good practice and I'm better off using the ...
1
vote
2answers
179 views

Is there an alternative to scintilla and what tradeoffs does it impose? [closed]

I would like to participate in some open source projects. I know a little c++ but I have not yet created a project with it: I want to learn c++ better. In order to participate in some open source ...
0
votes
1answer
66 views

Scintilla lexer help. Trying to save specific line information for later use

I am using scintilla's lexing capabilities and I want to do something a bit out of the box. Please mind that even though i have a bit of experience in other languages I am a beginner C++ coder. I am ...
1
vote
0answers
96 views

Scintilla Text Changed

I am using Scintilla Text Editor in my WPF application, I would like to enables the user to edit only whitespaces: insert, delete, replace etc. I want to handle the before text insert event, and ...
1
vote
1answer
106 views

How to hide new-line characters in Scintilla?

I'm creating a dark theme for a Scintilla based editor. I've managed to define all styles as I wanted, except for the line endings. In other words, despite all the text in my editor being showed on a ...
2
votes
0answers
97 views

ScintillaNet and RoutedCommands

I am using a ScintillaNet edit control in my C# WPF application. In my main window I have a few RoutedCommands setup. The ScintillaNet control is hosted inside a WindowsFormsHost. The RoutedCommands ...
1
vote
1answer
130 views

Winforms, Scintilla - Saving shortcut inserts 's' letter to editor

I write small app for editing sql procedures and use great ScintillaNET code-editor control. I defined a Ctrl+S shortcut for saving files: protected override bool ProcessCmdKey(ref Message msg, Keys ...
0
votes
0answers
27 views

How to get Scintilla Notifications in Cocoa?

How I can catch Scintilla Notifications (like SCN_AUTOCSELECTION, etc) in Cocoa application? Should I use NSNotificationCenter or I need to modify Scintilla source files to get this feature?
0
votes
0answers
35 views

Searching code in ScintilllaNET

I'm building a winfrom application that displays code-files using ScintillNET. I want the application to find comments in the code and highlight them without any user input. Is there any way of doing ...
0
votes
0answers
107 views

Search in ScintillaNet

I'm using ScintillaNET to display code in a winforms application. When the application loads I want to set foucs to and/or highligt parts of the code where comments with a specific set of characters ...
0
votes
2answers
121 views

Byte array to text for ScintillaNET

I'm writing a windows forms application in c#. The application allows the user to select source code-files from a listbox and displays them in colored code using ScintillaNET. The files are saved as ...
1
vote
2answers
170 views

Syntax highlighting control for Mono?

I can't seem to find any syntax highlighting widgets/controls for Mono. I know that GtkSourceView has a Mono version, but I can't actually find it anywhere. Any help would be greatly appreciated. :) ...
1
vote
1answer
146 views

Scintilla- Can't compile bait example

I'm tring to compile the bait example from the Scintilla website. I have had ZERO luck in getting it to compile. I can compile scintilla itself just fine, as well as scite but bait is a different ...
0
votes
1answer
26 views

How to get to sentence in cxx file when with debug mode in the Scintilla project

I had a trouble about the scintilla ,I want to fix it with debug mode, But,How can I trace into the cxx file?f10 in vs does not work....
1
vote
0answers
74 views

SCI_AUTOCSHOW on Scintilla

I have a question, when I use CallScintilla(SCI_AUTOCSHOW, nLen, (LPARAM)m_strCandidate.c_str()) to show the window about autocompletion, it works when I input a word but it doesn't always work ...
0
votes
2answers
197 views

How to change the editor's background color with scintilla?

How to change the eidtor's background color with scintilla,I don’t know scintilla very much,but it works really,and How?
1
vote
0answers
224 views

Indentation and smart indent in ScintillaNET

Can someone describe me how to make indentation work in Scintilla.net? this.scintilla1.Indentation.SmartIndentType = ScintillaNet.SmartIndent.Simple; I'm confused on what needs to be done to get it ...
0
votes
1answer
271 views

Writing Notepad++ plugin on C#. Call SCintilla with params like char *text

I am writing a plugin for notepad++ on c#. My plugin creates a tree to represents the stucture of some specific text-files. I have some problems calling functions with paramets like (char* text). ...
0
votes
0answers
113 views

Scintilla enables syntax highlight only typing something

I've correctly installed & configured Scintilla in my winform application. The syntax highlighter works fine but I still have an issue. If I set pragmatically a value for my textbox (which is a ...
1
vote
1answer
312 views

How to properly setup Scintilla keyword highlighting?

I use Scintilla component with DScintilla wrapper and get error with keyword highlighting in any lexer. Pascal, for example: with DScintilla do begin SetLexer(SCLEX_PASCAL); ...
3
votes
1answer
168 views

set highlight color of lua basic functions in scintilla control

I am using scintilla edit control in an MFC dialog based app. I load scilexer.dll, and set the lexer to lua, but the only thing that is getting highlighted is the comments. I can also set keywords ...
1
vote
0answers
32 views

why am i getting build errors from scintillawrappers demo poject?

CScintillaCtrl, CScintillaView & CScintillaDoc v1.28 downloaded and i opened it in VS 2005 but when i tried to build it i get more than 100 errors all pertaining to scintilla functions; example : ...
2
votes
0answers
580 views

ScintillaNET Loses Styling

I'm trying to use ScintillaNET in a WPF project (see http://stackoverflow.com/questions/10885211/bind-with-windowsformshost). I get it to use custom styling OK until I open another tab and switch to ...
1
vote
1answer
655 views

Custom highlight with ScintillaNET

in my winforms application I would create a custom syntax highlight, so I made this xml: <ScintillaNET> <Language Name="default"> <Styles> <Style Name="Default" ...

1 2 3