Author Topic: Shift+ctrl+end  (Read 2422 times)

0 Members and 1 Guest are viewing this topic.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Shift+ctrl+end
« on: July 01, 2020, 11:32:41 am »
Hey, doesn't shift+ctrl+end select all text from cursor down to end of text or is something broken in my memory?

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Shift+ctrl+end
« Reply #1 on: July 01, 2020, 04:03:21 pm »
Many of QB64's extended characters are mismapped, unmapped, or double-mapped.  When it comes to ctrl-shift-key keystrokes, I wouldn't count on *any* of them reacting reliably.  (Which is why I ended up writing my own input library completely from scratch...)
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Shift+ctrl+end
« Reply #2 on: July 01, 2020, 04:31:41 pm »
OK so my memory isn't making things up ;-))

That is one combination I miss and it's not working in Notepad++ either, so things change :)

Offline SpriggsySpriggs

  • Forum Resident
  • Posts: 1145
  • Larger than life
    • View Profile
    • GitHub
Re: Shift+ctrl+end
« Reply #3 on: July 01, 2020, 11:56:14 pm »
Hey, doesn't shift+ctrl+end select all text from cursor down to end of text or is something broken in my memory?
Are you talking about in the IDE? If so, it works just fine for me.
Shuwatch!

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Shift+ctrl+end
« Reply #4 on: July 02, 2020, 09:26:25 am »
Are you talking about in the IDE? If so, it works just fine for me.

I am using QB64 1.4 stable, what are you using? I seem to recall it did work fine in older versions.

Offline Dimster

  • Forum Resident
  • Posts: 500
    • View Profile
Re: Shift+ctrl+end
« Reply #5 on: July 02, 2020, 10:57:30 am »
Try cntrl - shift - page down. Seemed to work for me

Offline Dimster

  • Forum Resident
  • Posts: 500
    • View Profile
Re: Shift+ctrl+end
« Reply #6 on: July 02, 2020, 11:02:08 am »
Check that, that only gets you to the end of the screen not to the "end" of the sub

Offline Dimster

  • Forum Resident
  • Posts: 500
    • View Profile
Re: Shift+ctrl+end
« Reply #7 on: July 02, 2020, 11:07:53 am »
Actually, I just realized that the shift+ctrl+end does work with one "end" key on my keyboard but not the other. I have two "end" keys, one on the key pad associated with the number 1, and a second separate "End" with the group "Home, Page UP, Page DOWN" It does not work with the number pad key but does work with the separate one in the group. (if that makes sense). Key board is Logitech.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Shift+ctrl+end
« Reply #8 on: July 02, 2020, 11:33:27 am »
Yes @Dimster  I have 2 end keys like that, but good point about keyboards, this may be a hardware difference thing!

Yes shift + pg up or pg dn do work, and that is good alternate choice. When I do a huge selection with mouse I have to jiggle mouse up and down to keep selection moving, usually going up.
« Last Edit: July 02, 2020, 11:37:16 am by bplus »