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

undefined reference to `WinMain@16' with a main

I have a really simple shell of of a program. The editor i use is Scite and my compiler is MingW. The answer to this is that I'm missing a main but i do have a main(). Main.cpp #include #include "Money.h" using namespace std; int…
user3249265
  • 113
  • 1
  • 5
  • 16
0
votes
1 answer

SciTE - Replace string every two found

I use SciTE as my text editor, primarily oriented towards LaTeX and C++ programming. My current problem is I want to replace the $$ $$ TeX displaymath symbols with the \[ \] LaTeX ones. Given there's no way to distinguish between the opening and the…
Jeffrey Lebowski
  • 281
  • 1
  • 2
  • 12
0
votes
0 answers

Opening and editing ssh C files in Scite?

I'm in an intro to scientific programming class right now, and I've been doing the vast majority of my assignments just on the terminal window in my mac. The controls are quite frustrating, and I have been enlightened on using Scite, which I use in…
ayjak
  • 1
  • 1
0
votes
0 answers

scite python import doesn't work

I'm working on a simple project in Python since few weeks, i'm using Python 2.7 with SciTE on Win7 But last week i'd had to make some updates on my computer, since the import doesn't work and all of them were working before. I can't run my file from…
0
votes
0 answers

Can we run commands in terminal directly from scite editor?

I just started using Scite Text editor. Is it possible to change our directory location and run the commands in terminal directly from scite ? Is there any other text editor for c/c++ which can support this ?
Sai
  • 377
  • 2
  • 7
  • 18
0
votes
1 answer

What language is the Sc1.exe written in?

On the SciTE download page ( http://www.scintilla.org/SciTEDownload.html ) there is a link to: "A single file executable called Sc1 (720K) does not need any DLL or properties files as these are linked into the executable." What language is that…
user390480
  • 1,655
  • 4
  • 28
  • 61
0
votes
1 answer

in SciTE, how to make the whole block of code have less margin in python

My English just as my programming, are not good, apologize. I'm using SciTE to run python code. I added a while statement to the outside of a block of code. Then, in order to indent the next block of code, I selected it and pressed tab. After some…
StayFoolish
  • 531
  • 1
  • 12
  • 29
0
votes
2 answers

Why are os.system and subprocess.call spawning so many processes?

import os import subprocess import sys import re ## fname_ext=sys.argv[1] fname_ext=r"C:\mine\.cs\test.cs" exe=os.path.splitext(fname_ext)[0]+".exe" #…
Plakhoy
  • 1,846
  • 1
  • 18
  • 30
0
votes
1 answer

Can't open text file on scite; Attempting Chapter 4 of "Beginning Ruby"

I cant seem to open text files that I created on scite for a ruby based text analyzer I am building as a project from chapter 4 of "Beginning Ruby". When I manually look for the text file that I created in this location C:\Ruby193\bin I see it, but…
user2665359
0
votes
0 answers

can't save files in .rb extension

I'm a newb at Ruby. I installed it along with SciTe (which to my understanding no longer comes with the Installer pack..). I was prompted to insert some code to the ScitE editor and save it so I can then run the code... The problem is that I can't…
0
votes
1 answer

when I compile with Scite, command prompt won't show up, why?

when I compile with Scite, command prompt won't show up, why? I am programming a c program, and it wouldn't pop up once I complied is it because its not connected? or do I have to connect it, if so how?
hello
  • 9
  • 2
0
votes
1 answer

how do you make Scite interactive?

Once I compile with Scite, my command prompt won't show up. How do I set it up so I can accept inputs and outputs from the command prompt from my program using Scite?
hello
  • 9
  • 2
0
votes
1 answer

Submit current selection to R from Scite

I would like to submit the current selection to R instead of the entire file. Currently I have this in my r.properties (It submits the entire file): command.go..R="C:\Program Files\R\R-2.15.2\bin\x64\Rscript.exe" --vanilla…
user1134616
  • 596
  • 6
  • 14
0
votes
1 answer

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 I hit the compile icon?. Also would this process…
silent
  • 2,836
  • 10
  • 47
  • 73
0
votes
1 answer

SciTe and VS2012 Compiler

Currently is seems like SciTe is trying to compile with g++ but I need it to compile with the vs compiler. how do I make it do this? its giving me this compiler error: 'g++' is not recognized as an internal or external command, operable program or…
Dreken105
  • 149
  • 1
  • 1
  • 10