Topic: Disable Escape Menu? (1 of 4), Read 16 times
Conf: Keyboard, keystroke macros
From: Howard Goldstein
Date: Friday, November 13, 2009 02:13 PM

Is there any way to prevent the Escape Menu from popping up when the escape key is pressed? I have no need for that menu and don't ever want to see it again. I've tried changing the key assignment in VEDIT.KEY and even removing it altogether but the escape key seems to be permanently bound to the {ESCAPE] function. Is there perhaps a Config option that I've missed?

Thanks,
Howard

 


Topic: Re: Disable Escape Menu? (2 of 4), Read 13 times
Conf: Keyboard, keystroke macros
From: Ted Green
Date: Friday, November 13, 2009 03:56 PM

At 02:16 PM 11/13/2009, you wrote:
>From: "Howard Goldstein" (hgoldst1@...) Is there any way to prevent the Escape Menu from popping up when the escape key is pressed? I have no need for that menu and don't ever want to see it again. I've tried changing the key assignment in VEDIT.KEY and even removing it altogether but the escape key seems to be permanently bound to the {ESCAPE] function. Is there perhaps a Config option that I've missed?

No there isn't a way to disable it now. However, since I am working on VEDIT daily now, I will add a config option for it.

Ted.

 


Topic: Disable Escape Menu? (3 of 4), Read 13 times
Conf: Keyboard, keystroke macros
From: Pauli Lindgren
Date: Monday, November 16, 2009 04:51 AM

On 11/13/2009 2:13:20 PM, Howard Goldstein wrote:
>Is there any way to prevent
>the Escape Menu from popping
>up when the escape key is
>pressed?

Escape key can not be freely configured.
However, there is limited configurability with Escape_Mode().

For example:
  Escape_Mode('C'+'A'*256)   // Make <ESC> to perform [CANCEL]
This should do what you need.

But it would be better if esc would be fully configurable. I have needed that feature sometimes, too.

--
Pauli

 


Topic: Disable Escape Menu? (4 of 4), Read 14 times
Conf: Keyboard, keystroke macros
From: Howard Goldstein
Date: Tuesday, November 17, 2009 11:07 AM

On 11/16/2009 4:51:58 AM, Pauli Lindgren wrote:
>On 11/13/2009 2:13:20 PM, Howard
>Goldstein wrote:
>>Is there any way to prevent
>>the Escape Menu from popping
>>up when the escape key is
>>pressed?
>
>Escape key can not be freely configured.
>However, there is limited
>configurability with Escape_Mode().
>
>For example: Escape_Mode('C'+'A'*256)
>// Make to perform [CANCEL]
>This should do what you need.
>
>But it would be better if esc would be
>fully configurable. I have needed that
>feature sometimes, too.
>
>--
>Pauli
>
>
Thanks for reminding me about ESCAPE_MODE(). It's perfect for this particular need.

-- Howard