Search found 121 matches

by rjbill
03 Nov 2015 03:41
Forum: Bug reports
Topic: Not a bug: Find lighter color
Replies: 1
Views: 6266

Not a bug: Find lighter color

Find and replace All found items are now highlighted when doing a "Find" or "Replace". The current item is highlighted using the section color and all other items using a lighter color. This gives you a better view of the found items in your document and makes "Find Next/Pr...
by rjbill
12 Oct 2015 18:22
Forum: Bug reports
Topic: 10.70 beta 2 doesn't auto-install
Replies: 5
Views: 11274

Re: 10.70 beta 2 doesn't auto-install

Yep. Did the same thing with Beta 3.

Do you want to try to figure out what's going on, or should I download and install?
by rjbill
10 Oct 2015 22:39
Forum: Bug reports
Topic: 10.70 beta 2 doesn't auto-install
Replies: 5
Views: 11274

Re: 10.70 beta 2 doesn't auto-install

Okay.
I just started the editor and it didn't auto-install.
So I checked for updates and it still says beta 2.
So I will wait and see if it does beta 3.
by rjbill
07 Oct 2015 20:57
Forum: Bug reports
Topic: 10.70 beta 2 doesn't auto-install
Replies: 5
Views: 11274

10.70 beta 2 doesn't auto-install

I started up 10.60 and it asked if I wanted to install the beta. When I click Install Beta that dialogue window goes away (instead of downloading?) and leaves the editor window there. It also removed all of the files I had open, which are now probably lost unless I can find them somewhere. It does t...
by rjbill
13 May 2015 08:49
Forum: Scripts
Topic: Example: DelLineContains / DelLineNotContains
Replies: 21
Views: 45048

Re: Example: DelLineContains / DelLineNotContains

You should drop the slashes and use only "[0-9]+". To sum it up, this works for me: var sSearchtext = "[0-9]+"; var sFoundText = ""; iFound = ScriptUtils.RegExPos(sSearchtext, sLineText, sFoundText); That's what I did and it's not working. The problem was that RegExPos...
by rjbill
13 May 2015 02:46
Forum: Scripts
Topic: Example: DelLineContains / DelLineNotContains
Replies: 21
Views: 45048

Re: Example: DelLineContains / DelLineNotContains

Nicely done. (and well-programmed) I like more whitespace than you do. I expanded the script and added a Count function. I had to kind of guess at the German translation for the new strings. It also does RegEx searching. (fixed the code) I also tried to make it work with RegEx and I can't figure out...
by rjbill
12 May 2015 22:53
Forum: Scripts
Topic: Example: DelLineContains / DelLineNotContains
Replies: 21
Views: 45048

Re: Example: DelLineContains / DelLineNotContains

Is it possible that all changes in a script (or between 'BeginUpdate' and 'EndUpdate'), recognize as one single restorable change ? When a script delete 1000 lines in one loop/process and you will undo it, these are many, many steps ! It may be possible to add (in a later version). But you can alre...
by rjbill
11 May 2015 19:51
Forum: Scripts
Topic: Example: DelLineContains / DelLineNotContains
Replies: 21
Views: 45048

Re: Example: DelLineContains / DelLineNotContains

For people who speak normal languages like English: :-D Suchtext = Search text Zeilen wurden entfernt = Lines were removed Is there a "best location" to put these scripts in? (for good housekeeping and such -- never mind -- found: C:\Users\username\AppData\Roaming\RJ TextEd\Scripts\My Scri...
by rjbill
07 May 2015 17:35
Forum: Bug reports
Topic: FIXED: Find All box info disappeared
Replies: 5
Views: 10569

Re: NOBUG: Find All box info disappeared

That's not good. "Find" and "Replace" are two different things. Doing a replace should not make find results disappear. Find results shouldn't disappear until I: 1) do another find (folder or something that re-uses the results window), 2) close the results window, or 3) I suppose...
by rjbill
06 May 2015 23:30
Forum: Bug reports
Topic: FIXED: Find All box info disappeared
Replies: 5
Views: 10569

Re: ??? Find All box info disappeared

It did it again so it is consistent. See the attached snapshot images. (the images are reversed below for reference) I did a Find All in Folder files for some text and it showed the results in the bottom Search Results panel. (I don't know what the 'official name' is for some of these items) As you ...
by rjbill
05 May 2015 23:02
Forum: Bug reports
Topic: FIXED: Find All box info disappeared
Replies: 5
Views: 10569

FIXED: Find All box info disappeared

I did a Find All and then did a Global replace of text in a document
and the Find All box info disappeared.
by rjbill
14 Apr 2015 03:27
Forum: Bug reports
Topic: FIXED: Split window syntax highlighting
Replies: 1
Views: 5293

FIXED: Split window syntax highlighting

I split a JavaScript window horizontally and the new sub-window was basically a text file syntax highlighting/theme (I think -- blue text on white background -- yeah, it's my plain text syntax/theme). It also didn't change the coloring for the file type in the left-hand line numbers column. (for my ...
by rjbill
17 Jul 2014 07:31
Forum: External or integrated tools
Topic: KDiff3 versus WinMerge for file comparison
Replies: 0
Views: 10869

KDiff3 versus WinMerge for file comparison

I have switched to using KDiff3 because WinMerge is no longer in active support or development.

http://kdiff3.sourceforge.net/
by rjbill
17 Jul 2014 07:30
Forum: External or integrated tools
Topic: WinMerge as integrated tool
Replies: 3
Views: 16789

Re: WinMerge as integrated tool

I have switched to using KDiff3 because WinMerge is no longer in active support or development.

http://kdiff3.sourceforge.net/
by rjbill
16 Nov 2013 08:02
Forum: Scripts
Topic: textbox control?
Replies: 1
Views: 10787

textbox control?

I need to have a textbox control on a form, but I don't see any way to do this. I can do the form and put "Process" and "Cancel" buttons on it, but I need to specify a start and a stop numeric value. I'm trying to make a script that inserts numbers on a line, starting on the line...