PxPlus User Forum

Twitter Twitter Twitter

Author Topic: how to disable the command line utility in Nomads  (Read 1006 times)

Cees Trip

  • Member
  • **
  • Posts: 8
    • View Profile
    • Company website
how to disable the command line utility in Nomads
« on: March 05, 2021, 05:59:46 AM »
L.S.

Does somebody knows how how to disable the command line utility in Nomads. Pressing F5 brings up the utility in an Nomads panel. See also attachment Clipboard01.jpg.

Regards,
Cees Trip
- personal is not the same as important - Terry Pratchett

ChrisKCAi

  • Silver Member
  • ***
  • Posts: 38
    • View Profile
Re: how to disable the command line utility in Nomads
« Reply #1 on: March 05, 2021, 07:49:08 AM »
That's the default keyboard config. You can either use the keyboard config utility (call "*UCK") to redefine F5 or issue defctl $000074$=5 to remap the F5 key to generate ctl=5

Dave Fullerton

  • Silver Member
  • ***
  • Posts: 35
    • View Profile
Re: how to disable the command line utility in Nomads
« Reply #2 on: March 05, 2021, 08:12:25 AM »
Hi:

In our START_UP program we do the following:

00900 ! ^100,5 - Set F5 and Shift F5 keys
00905 defctl $000074$=5 ! F5=F5
00910 defctl $000174$=-1 ! Shift F5 calls utilities

Like you, we found that F5 calling the utilities got in the way, but we liked having access to the utilities when we are in command mode, so Shift-F5 was a good tradeoff.

Hope this is useful

Regards

Dave

Cees Trip

  • Member
  • **
  • Posts: 8
    • View Profile
    • Company website
Re: how to disable the command line utility in Nomads
« Reply #3 on: March 05, 2021, 08:58:51 AM »
Thanks Chris and Dave. This works.
- personal is not the same as important - Terry Pratchett