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
0
votes
1 answer

Red python script print() output in SciTE output panel. A feature or a bug?

SciTE text editor Version 3.6.0 compiled for GTK+ 3.16.7, Aug 17 2015 10:20:12. Python script code: print(" at data line " ) # output in red color print(" at line ") # output in black color print(" at . line ") # output in red …
Claudio
  • 7,474
  • 3
  • 18
  • 48
0
votes
1 answer

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 as a power user. Anyone know how to lean…
user827114
  • 1
  • 1
  • 3
0
votes
1 answer

Unable to execute AutoIt script in Visual Studio Code

I installed AutoIt extension for Visual Studio Code and when I run the script using Ctrl + F5 it executes but does not display the form to enter IP details. Same script in SciTE editor is working fine. How can I make my AutoIt script run in Visual…
0
votes
0 answers

Install SciTe editor on Termux

I have tried code debugging on android phone, building web service under Termux. Vim, emacs, mcedit, nano and similars are old-school editors, it is not easy to use after coding in notepad++ for years, so I tried to install SciTe, what is based on…
0
votes
1 answer

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 properties in SciTe I find this: if…
Bodhidarma
  • 519
  • 1
  • 7
  • 25
0
votes
1 answer

Scite Autorun f5 suddenly stopped working

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 working.
Bodhidarma
  • 519
  • 1
  • 7
  • 25
0
votes
3 answers

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!
gerky
  • 6,267
  • 11
  • 55
  • 82
0
votes
1 answer

change SciTE Compile command

recently i have been studying metamethods, and some of them work only in version 5.2 and later. Unfortunately, even after I downloaded Lua 5.4 and changed the environment variables, IDE SciTE uses only version 5.1 to compile and run the codes in…
Vinni Marcon
  • 606
  • 1
  • 4
  • 18
0
votes
1 answer

how do I create files on sciTE for c++?

I am newly learning c++. I am using the Linux ubuntu operating system and a sciTE text editor. Do you know how to create a file on scite that I will be able to compile and then create an archive on terminal? also how do I create a 'make file. cpp'.…
user13268771
0
votes
1 answer

How can I use the hat symbol to negate a character which is at the start of my regex in Scite?

In the Scite editor is there a way to runa regex search where the first character is "notted". Normally the hat symbol (^) is used but at the start of the regex this indicates the start of a line. So this: ^.', +'default' Doesn't work (this…
Richard
  • 4,809
  • 3
  • 27
  • 46
0
votes
1 answer

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 print: hello world >Exit code: 0 It's not correct and…
Saito
  • 168
  • 6
0
votes
2 answers

How to print ダイスキ using Python 3.7 in Scite?

I'm using Win10 & Scite with utf-8 enabled output window. The file is saved as UTF-8 with BOM Script: print('ダイスキ from python 3') The script can be run on cmd prompt without error. But when run on Scite it will produce error: Output: >pythonw.exe…
dns
  • 2,753
  • 1
  • 26
  • 33
0
votes
0 answers

Opening a Python written .txt file in SciTE vs Notepad

I am performing some data extraction operations on a large number of experimental data sets. These data sets are .txt files. Once I extract the data, I perform some mathematical calculations on them and compile this data into NumPy arrays. After…
ishan_ae
  • 13
  • 4
0
votes
0 answers

Trying to get Scite to work, this pops up: javac is not recognized as an internal or external command, operable program or batch file

I'm using Windows 10 and I am required to start using Scite for a class at my university. I've been using intelliJ and that works fine, but for the class our professor strictly wants us to use Scite. Anytime I compile code I get the error: 'javac'…
0
votes
0 answers

Issue with compiling and running c++ program on scite

So I'm just writing a simple c++ program and I am having some issues running the program. I could build my make file but when I try to run the testfile it gives me an "collect2.exe: error: ld returned 1 exit status" error, "undefined reference to…