Tagged Questions

SciTE is a text editor based on the Scintilla source code editing component. Originally built to demonstrate Scintilla, it has grown to be a generally useful editor with facilities for building and running programs. It is best used for jobs with simple configurations.

learn more… | top users | synonyms

7
votes
2answers
165 views

What is “timmy whinge” all about?

The SciTE text editor has an option in its configuration files called "tab.timmy.whinge.level". What's the story behind this name? As I understand it, "whinge" is a British-ism for "whine" -- Google ...
6
votes
2answers
1k views

How to display line numbers by default in SciTE?

I am using the lightweight SciTE Text editor and I like it very much. I would like to configure it in order to see the line numbers displayed when I open it. I don't want to check the "View\Line ...
2
votes
1answer
715 views

Scite Lua - escaping right bracket in regex?

Bumped into a somewhat weird problem... I want to turn the string: a\left(b_{d}\right) into a \left( b_{d} \right) in Scite using a Lua script. So, I made the following Lua script for Scite: ...
1
vote
1answer
60 views

Java: Scanner's next() acts differently in Scite and command prompt

I'm trying out a very simple java program that uses Scanner and its method next(), and somehow I encounter a weird situation. Here is the code: import java.util.Scanner; public class Test { ...
1
vote
1answer
47 views

How do I set pandoc as a 'compiler' for markdown files in SciTE?

I've begun writing stuff in markdown lately, and edit my files in SciTE. I work in Windows, so this means I'm simultaneously running a Windows command prompt to generate output files at various stages ...
1
vote
1answer
121 views

Auto-indentation problem using Scite

I am learning Ruby and use the Scite editor, but I found there is something I can not configure. When I type "def sayXXX" and then I press the Enter key, and then I type "end", now the "end" keyword ...
1
vote
2answers
104 views

Watir, How can i fetch the errors it displays after running a test script and place it on a file

Im new to watir and running scripts from it. Just want to ask if how can I get or extract the error messages Scite displays on the left panel and import it to a textfile? or is it really possible to ...
1
vote
1answer
131 views

Problem with SCITE, AMPL and GLPK

Can someone explain me step by step how to add AMPL to SCITE editor and add GLPK solver ?
1
vote
2answers
213 views

Reformatting text (or, better, LaTeX) in 80 colums in SciTE

I recently dived into LaTeX, starting with the help of a WYSIWYM editor like Lix. Now I'm staring writing tex files in Sci-TE, It already has syntax higlighting and I adapted the tex.properties file ...
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
2answers
231 views
1
vote
1answer
445 views

How to force SciTE to reload a file automatically?

I think that SciTE can do it but it doesn't work for me. Is there any option to setup? Thanks in advance
1
vote
1answer
104 views

Is it possible to force Scite as topmost window?

I am using SciTE as text editor. It is possible to run script and see the results in its console output. The application I am working on is displayed fullscreen and is hiding SciTE. Is there an ...
0
votes
0answers
19 views

Enabling CoffeeScript lexer in SciTE?

I noticed there is a LexCoffeeScript.cxx file in the SciTE source code; however, SciTE does not seem to have a CoffeeScript menu option in its Languages menu. Adding the option manually doesn't help ...
0
votes
2answers
41 views

Make level the printed symbols in the ouput

Consider this Ruby code: puts "*****" puts " *" puts " " puts "*****" puts " *" My Output is like this: ***** * ***** * Why the heck a whitespace doesn't fill the same ...
0
votes
1answer
24 views

scite: colored text

I want to have colored text in scite to help make simple ascii maps/graphics. I have created a neew properties file called map.properties and imported it. but what will be its content? I want to be ...
0
votes
1answer
44 views

Getting information from keyboard in SciTE

I am reading a book about ruby, it learn me that I write my program in SciTE and then use F5 in keyboard to run my program. Now , today I write this very very simple program : a = gets.chomp! when I ...
0
votes
1answer
102 views

How to execute Erlang program in Scite in Windows?

I installed Erlang on my PC. Then added the path C:\Program Files (x86)\erl5.8.4\bin to my Environment Variables -> PATH so I can run erl.exe from CMD And now when the the code is typed in Scite ...
0
votes
1answer
209 views

What's the default encoding for System.IO.File.ReadAllText

if we don't mention the decoding what decoding will they use? I do not think it's System.Text.Encoding.Default. Things work well if I EXPLICITLY put System.Text.Encoding.Default but things go wrong ...
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
2answers
719 views

Markdown syntax highlighting in SciTE/Notepad++

I'm looking for a .properties file for Markdown syntax in SciTE, if possible? A partial highlighter would do, otherwise.
0
votes
1answer
201 views

SciTe + Ruby sh: ruby: not found

I've been running programs from scite and it's no longer working. I get the error message sh: ruby: not found even when I write a simple test program like puts "hello". When I pull up the Ruby ...
0
votes
1answer
52 views

Scite Autorun f5 suddenly stopped working

The title pretty much says it all. I use scite text editor to run my code. f5 has been working fine and I've been autorunning program after program in the side window, but suddenly... it stopped ...
0
votes
2answers
132 views

How to Use Scite as default editor in Git

I'm using git config --global core.editor "mate -w" when using textmate. How do I set it to scite? I am not sure what -w or -f means. Thanks!
0
votes
1answer
53 views

SciTE Compile Problem :(

I'm trying to use SciTE's "Go" (F5) menu option with a custom batch file. I've tried adding the following to the Global, Local, and User options files: command.go.*=cmd /C Call ...
0
votes
0answers
140 views

Making lua macros work in SciTE

I'm using version 2.03 of SciTE and I'd like to get lua macros working as I'm fairly familiar with lua. I have followed the instructions on lua-users wiki: Using Lua With Scite to attempt to create a ...
0
votes
1answer
67 views

SciTE can't flush output pane until program exit

SciTE version is 2.25. I have some ruby code to test it. def foo puts "hello" sleep 5 puts "world" end puts foo SciTE's output pane will show this: >ruby scite.rb And 5 seconds later ...
0
votes
2answers
203 views

SciTe Editor Download and Install?

I am learning Python and for that i download SciTe Editor but it not gives any exe how should i install or use it?
0
votes
3answers
188 views

Multiline command.go in SciTE

The Short This deals with SciTE and the go language in Windows (in particular, Windows 7). This is my first time using SciTE, so if there is another way to achieve my goal that is fine as well. ...
0
votes
1answer
70 views

change shortcut in scite dialog

does anyone know how to change alt-a (replace all) in scite's replace dialog to another shortcut? thanks a lot!
0
votes
1answer
144 views

Python exit code in SciTE -1073741819

A small piece of python code breaks/exits with -1073741819 within SciTE. Is there a way to attach a system sound or anything to alert me on exit. So far, its a silent break.
0
votes
4answers
176 views

Apart from SCITE can anyone recommend a good tool for programming Ruby

I have used SCITE for a few weeks now, wondered if there was an better alternative.
0
votes
0answers
79 views

Syntax highlight problem in Scintillua 2.01-1

There is syntax highlight for HTML and PHP in Scintilla/SciTE 2.01. But there's isn't syntax highlight for HTML and PHP (all others work) in Scintillua and Scite-st (Mitschell's Scite with snippets). ...
0
votes
1answer
727 views

scite editor and gcc setting up?

Hey there, In class we're using the Scite editor with gcc and its a tad outdated. I was wondering how you would "attach"(For lack of a better term) gcc to scite so that it would compile the code when ...
0
votes
1answer
520 views

lua for windows

I'm trying to use "lua for windows" - SciTE Simply example such as Print("hello") I hit Alt + R (per tutorial instructions), everytime I do this I get: "Unable to debug program!" Anyone had this ...
0
votes
1answer
1k views

Compiling code using gcc and SciTE?

I'm trying to compile C/C++ code from an external source using SciTE. The SciTE has a built-in feature where it searches for the gcc compiler and libraries in the same folder. The problem occurs if I ...
0
votes
2answers
850 views

SciTE Regex, Match expression between x and y times eg \w*{x,y}

How can I use SciTE to match a word character between 1 and 7 times? normally it would be \w{1,7}
0
votes
3answers
532 views

Is there a way to access VBA help files from the command line

I'm going to have to write a number of vba modules for a project I'm working on, and would prefer to use SciTe to the built in editer in Office. SciTe allows you to redirect the effect of hitting F1 ...