Search found 136 matches

by DerellLicht1
17 Jan 2024 00:06
Forum: Bugs
Topic: FIXED: [v16.10] CTRL-RIGHT bug
Replies: 10
Views: 804

Re: [v16.10] CTRL-RIGHT bug

for (i=start ; i< finish ; i++) { Tested that one with Visual Code, Visual Studio and Notepad and CTRL-RIGHT has more or less the old behaviour of TextEd, stopping at almost every position (which I like way more than the new behaviour) vha Well, *I* was the one pushing for more efficient cursor mov...
by DerellLicht1
15 Jan 2024 18:02
Forum: General discussion
Topic: Resolved: odd screen-shifting issue
Replies: 5
Views: 658

Resolved: odd screen-shifting issue

This is another issue that's going to be hard to chase down, because it is intermittent... For now, I just want to make note of it, and see if anyone else is seeing this issue? I *believe* that it started with V16.10, though I'm not absolutely certain; it *is* recent, past couple of weeks or so. Wha...
by DerellLicht1
15 Jan 2024 16:08
Forum: Bugs
Topic: FIXED: NextWordNoSymbolsAction - tweak requested
Replies: 4
Views: 445

FIXED: NextWordNoSymbolsAction - tweak requested

I'm sorry to raise this topic again, but could I request a change to how NextWordNoSymbolsAction operates?? I *really* would prefer that Ctrl-RightArrow (which uses this function) jump to *beginning* of word, not *end* of word?? The current behavior is really obtuse; I don't know *any* reason why I ...
by DerellLicht1
15 Jan 2024 16:03
Forum: Bugs
Topic: FIXED: [v16.10] CTRL-RIGHT bug
Replies: 10
Views: 804

Re: [v16.10] CTRL-RIGHT bug

Rickard; Since you have already implemented separate "NoSymbol" functions for me, maybe you should change the original function back to how they historically operate?? Or perhaps you could exclude underscore from the symbols that you recognize, since they are used in function names, especi...
by DerellLicht1
15 Jan 2024 16:01
Forum: Bugs
Topic: FIXED: [v16.10] CTRL-RIGHT bug
Replies: 10
Views: 804

Re: [v16.10] CTRL-RIGHT bug

Yeah, this has been caused by a change that Rickard implemented at my request, but it causes anomalies in this case... I had asked that Ctrl-left and Ctrl-right *not* stop at every symbol, but only jump between words... that would make it more efficient when traversing lines such as: for (i=start ; ...
by DerellLicht1
19 Dec 2023 01:35
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: (sorta) FIXED: minor bug in cursor movement

hmmm... well, left movement works ideally now... but right movement is odd... why would anyone ever want to jump to *end* of word?? That makes not much sense; even when jumping right by word, we still are dealing with words, and expect to start at beginning of word... Frankly, though, if you are tir...
by DerellLicht1
19 Dec 2023 01:24
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: FIXED: minor bug in cursor movement

YES!!! That is perfect!! Thank ye very much...
by DerellLicht1
17 Dec 2023 21:08
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: FIXED? minor bug in cursor movement

Ahhh... interesting... I've actually used both move and select (shift-ctrl-arrow vs ctrl-arrow), but never consciously realized I was doing it!! Thanks for the clarification...
by DerellLicht1
17 Dec 2023 17:09
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: FIXED? minor bug in cursor movement

Excellent!! Thank you so much!! and I agree with you about those other editors; I looked at each of those, when I was looking for a replacement for MultiEdit, which I had used for decades before the company folded... frankly, I think VS Code is quite primitive; n++ is close, but lacks *many* feature...
by DerellLicht1
17 Dec 2023 11:04
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: FIXED? minor bug in cursor movement

Okay, I'm using 16.10 beta 1... but movement by word still isn't working as I expect... looking at this line: for (i=start ; i< finish ; i++) { starting at end of line, ctrl-left... Pspad: stops only on keywords, no symbols; number of steps from right to left: 6 multiedit: stops only on keywords, no...
by DerellLicht1
11 Dec 2023 00:00
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: minor bug in cursor movement

Well, I pray that you will pursue the logical choice... When moving among words in a line, stopping at every symbol character simply makes no sense, and is very disruptive... I would suggest that this should be viewed in the context of "moving among words"... PreviousWordAction should move...
by DerellLicht1
10 Dec 2023 20:25
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: minor bug in cursor movement

Will do... will report back here afterwards.
Thanks, Rickard!!
by DerellLicht1
10 Dec 2023 19:31
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: minor bug in cursor movement

But RJTE includes every single symbol in the line!! What exactly do you mean? Using your code (or my own PHP code), caret goes to: beginning of the word "flag" -- end of "idx" -- beginning of "idx" -- end of "data_flags" -- beginning of "data_flags"...
by DerellLicht1
10 Dec 2023 19:19
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

Re: minor bug in cursor movement

But RJTE includes every single symbol in the line!! What exactly do you mean? Using your code (or my own PHP code), caret goes to: beginning of the word "flag" -- end of "idx" -- beginning of "idx" -- end of "data_flags" -- beginning of "data_flags"...
by DerellLicht1
09 Dec 2023 22:25
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4563

FIXED: minor bug in cursor movement

Okay, this may seem like a trivial issue, but it has been bugging me for all the time that I've used RJTE, so I would at least wish to discuss it with our author and everyone else... So consider this line of C++ code: for (idx=0; data_flags[idx].flag != 0; idx++) { Visualize the cursor sitting just ...