Author Topic: New editor.  (Read 7404 times)

stevenxie

  • Member
  • **
  • Posts: 56
Re: New editor.
« Reply #15 on: November 14, 2020, 11:19:42 PM »
hi,hutch. A new bug has happend.when I press "s" key in tedit, my computer screen shows a dialog bx of save as...., why is this?






Vortex

  • Member
  • *****
  • Posts: 2787
Re: New editor.
« Reply #16 on: November 14, 2020, 11:47:53 PM »
I can confirm it. Hitting s without CTRL is launching the Save As dialog box.

hutch--

  • Administrator
  • Member
  • ******
  • Posts: 10583
  • Mnemonic Driven API Grinder
    • The MASM32 SDK
Re: New editor.
« Reply #17 on: November 14, 2020, 11:49:29 PM »
Its set the CTRL + S as the hotkey. What I don't know is how a Chinese version of Win10 handles hotkeys.
hutch at movsd dot com
http://www.masm32.com    :biggrin:  :skrewy:

hutch--

  • Administrator
  • Member
  • ******
  • Posts: 10583
  • Mnemonic Driven API Grinder
    • The MASM32 SDK
Re: New editor.
« Reply #18 on: November 14, 2020, 11:55:08 PM »
 :sad:

I can duplicate it as well. A stuffup in how the hotkeys are done. Will fix.

For anyone with the source, change this

      bypass1:
      ' --------------------------------
        CmpKey(%VK_SHIFT)
        ! je bypass2

To

      bypass1:
      ' --------------------------------
        CmpKey(%VK_CONTROL)
        ! jne bypass2

        CmpKey(%VK_SHIFT)
        ! je bypass2

I have replaced the complete project and the modified version.

hutch at movsd dot com
http://www.masm32.com    :biggrin:  :skrewy:

stevenxie

  • Member
  • **
  • Posts: 56
Re: New editor.
« Reply #19 on: November 15, 2020, 02:38:57 AM »
:sad:

I can duplicate it as well. A stuffup in how the hotkeys are done. Will fix.

For anyone with the source, change this

      bypass1:
      ' --------------------------------
        CmpKey(%VK_SHIFT)
        ! je bypass2

To

      bypass1:
      ' --------------------------------
        CmpKey(%VK_CONTROL)
        ! jne bypass2

        CmpKey(%VK_SHIFT)
        ! je bypass2

I have replaced the complete project and the modified version.

hi,hutch. Please you releae new version.

Vortex

  • Member
  • *****
  • Posts: 2787
Re: New editor.
« Reply #20 on: November 15, 2020, 02:49:33 AM »
hi,hutch. Please you releae new version.

Hi stevenxie,

Hutch uploaded the new releases. Did you try them? The problem is solved.

stevenxie

  • Member
  • **
  • Posts: 56
Re: New editor.
« Reply #21 on: November 15, 2020, 10:05:56 PM »
all things ok,very good

bobl

  • Member
  • **
  • Posts: 72
Re: New editor.
« Reply #22 on: November 17, 2020, 09:43:20 AM »
"Wickedly crafted" looks right.
Thank you very much for this.
I use a few minimalistic editors and they start up fast but this is instantaneous and the DOS prompt looks very useful.