NEdit is a standard GUI (Graphical User Interface) style text editor for programs and plain-text files.
Questions tagged [nedit]
4 questions
0
votes
1 answer
NEdit_How to use the Shell on NEdit to save the file - LINUX base
I am working on the script on NEdit with LINUX environment.
But I can't reach one of the funciton of the script.
*I would like to add "save" file function at the script, but it seems not possible.
I checked the NEdit Help document, it mentions the…

Hsu Yu-Wei Auston
- 41
- 1
- 1
- 3
0
votes
1 answer
RegEx: Grabbing values between not escaped quotation marks
This question is related to RegEx: Grabbing values between quotation marks
The RegEx from the best answer
(["'])(?:(?=(\\?))\2.)*?\1
tested with the
Debuggex Demo
also matches strings that start with an escaped double quote. I tried to extend the…

j-hap
- 150
- 1
- 2
- 9
0
votes
1 answer
Updating syntax highliting in NEdit for modern Fortran
I generally use NEdit and have a file that give highlighting for the common Fortran language.
I tried to add in some of the missing keywords like DEALLOCATE, CONTIGUOUS, etc and ailed miserably. I was using example from here:…

Holmz
- 714
- 7
- 14
-1
votes
1 answer
Reg ex for selecting and replacing a numeric value in a line that contains a specific pattern of string
I have the following lines (using nedit)
R1_1 vsp vsp/1 23
R2_1 vsp/2 vsp/3 30
R3_2 vsp/3 vsp/4 50
R3_2 v2 v1 50
C1 vsp/1 vsp 60
I want to just replace the numbers with number*0 for the lines that start with R and contain the string vsp. I want the…