Eduardo Mercovich wrote:
> 
> This is no plea for support (I use the public version), but a suggestion.
> 
> In text processing there are 2 shortcuts frequently used:
>  * CTRL-Backspace     ->     delete-previous-word
>  * CTRL-Delete         ->     delete-next-word
> 
> Maybe you would like to include them as standard in your next release.

OK, but I hope that these two keystrokes are not already used by other
actions. (I'll have to check this.)

Meanwhile, if you download and install the add-on called "A sample
customize.xxe" (simply use "Options|Install Add-ons" to do this), you'll
get "Esc d" bound to macro "deleteWord" (among many other useful
bindings/macros):

---
  <!-- ================================================================
    "Esc d" deletes characters from caret to end of word.
  ================================================================= -->

  <command name="deleteWord">
    <macro>
      <sequence>
        <command name="selectTo" parameter="wordEnd" />
        <test expression="$selectedChars != ''" />
        <command name="delete" />
      </sequence>
    </macro>
  </command>

  <binding>
    <keyPressed code="ESCAPE" />
    <charTyped char="d" />
    <command name="deleteWord" />
  </binding>
---


Reply via email to