Questions tagged [scite]

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.

SciTE is a Scintilla based Text Editor. 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.

SciTE is currently available for Intel Windows (XP or later) and Linux compatible operating systems with GTK+.

Useful Links

117 questions
2
votes
1 answer

Bash 'type someCmd' : what means 'hashed'? (different outputs for 'type mkdir')

What puzzles me is, that I am getting different output running this two-liner script: help | head -n1 type mkdir from within SciTE (here the SciTE output panel output): GNU bash, version 4.3.46(1)-release (x86_64-pc-linux-gnu) mkdir is…
Claudio
  • 7,474
  • 3
  • 18
  • 48
2
votes
0 answers

Style Scite with Lua?

I would like to style Scite, so it starts up with whatever is the default style - but then I would want to change to a different style to a dark one by running a command. So, after some digging, I got to this script in sciteLuaFunctions.lua which I…
sdaau
  • 36,975
  • 46
  • 198
  • 278
2
votes
2 answers

How to embed 'QScintilla' code editor in self-made PyQt GUI?

I'm making a small IDE - mainly for fun! I write everything in Python, and use the PyQt5 library to build the GUI. Here is a screenshot of the current status: The code editor itself is a simple QTextEdit() widget - embedded in a QFrame() widget,…
K.Mulier
  • 8,069
  • 15
  • 79
  • 141
2
votes
2 answers

SciTE for lua compiler issues

After install SciTE IDE for lua why Compile,Build and run option are disabled. What to do,how to enable those portions Note: Installed LuaForWindows_v5.1.4-46.exe on my PC(OS=win-8.1 and 64 bit)
shamim
  • 6,640
  • 20
  • 85
  • 151
2
votes
1 answer

Can I use Dragon (dictation software) Full-Text or Select-and-Say feature with SciTE?

Dragon Naturally Speaking 13 and Dragon Professional Individual and Group 14 (the name "Naturally Speaking" is no longer going to be used by Nuance) is terrific software for dictating into a full-fledged word processor like MS Word, but does not…
PGilm
  • 2,262
  • 1
  • 14
  • 26
2
votes
3 answers

Does Vim or SciTE has syntax highlight support for T4 template .tt files?

Does Vim or SciTE has syntax highlight support for T4 template .tt files?
wangzq
  • 896
  • 8
  • 17
2
votes
1 answer

Console program does not execute correctly when run from SciTE

I'm learning C from a tutorial concurrently with a general programming course. The course setup advised Windows users to use SciTE, so I did. Possibly because I have Windows 8, I had to edit the SciTE cpp.properties file to get the sample programs…
Tranquilled
  • 139
  • 6
2
votes
1 answer

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: function SpaceTexEquations() …
sdaau
  • 36,975
  • 46
  • 198
  • 278
2
votes
5 answers

Regular Expression for matching a single digital followed by a word exactly in Notepad++

:Statement Say we have following three records, and we just want to match the first one only -- exactly one digital followed by a specific word, what is the regular expression can be used to make it(in NotePad ++)? 2Cups 11Cups 222Cups The…
user3317307
  • 21
  • 1
  • 3
2
votes
1 answer

Scite Lua Scripting Extension API Beginner

This may be a stupid question but how do I access things like editor:addtext()? http://www.scintilla.org/PaneAPI.html http://www.scintilla.org/SciTELua.html I can see how to use it, but don't know where to put it. Where are the functions accessible…
2
votes
1 answer

How to pass parameters in Scite?

Problem: Ran into a problem when using Scite for my ruby scripting. It will not take my parameters that I need to get the program working. What I discovered so far 1: In Scite running on a Window Operating system, I have under "View -> Parameter"…
johanserik
  • 41
  • 6
2
votes
1 answer

Replace file in "changing" directory

I know the title doesn't make sense so I'll try to elaborate: I have a program called My App.exe and when I run it, it creates a file in a folder in AppData. The name of the folder it creates varies for every machine. Example: When My App.exe is run…
Kazankoph
  • 149
  • 4
  • 12
2
votes
1 answer

why SciTE's output is reversed?

I'm writing my lua code with SciTE, i wrote a C function that could be invoked by lua like this: int hello(lua_State* L){ printf("----->> Hi! %s\n", lua_tostring(L, 1)); return 0; } and my lua code is like…
zhangxaochen
  • 32,744
  • 15
  • 77
  • 108
2
votes
2 answers

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 try to compile from SciTE externally. Compiling…
Secko
  • 7,664
  • 5
  • 31
  • 37
2
votes
1 answer

Testing and editing JavaScript (both standalone and in HTML) in SciTE?

Whenever I try to run a '.js' file in SciTE (Scintilla Text Editor) I almost always get an error stating that certain variables are undefined. I'm guessing that SciTE doesn't have many JavaScript libraries, but I'm not sure. A few searches yielded…
Username
  • 3,463
  • 11
  • 68
  • 111