Hello

You can't assign 2 shortcuts to one command, but it's possible to write simple
script with your shortcut, what will call delete last char.
Prerequisities:
32b PSpad version
Scripting is enabled in the Program settings / System integration


Open new file with .VBS (visual basic script) extension
Put following content into your file:

Sub ShiftBckSpace
  If (editorsCount = 0) Then
    Exit Sub
  End If
  Set editor = newEditor()
  editor.assignActiveEditor
  editor.command(ecDeleteLastChar)
end sub

menu items
sub Init
  addMenuItem "Shift+BackSpace","", "ShiftBckSpace", "Shift+BkSp"
end sub


Save this file into PSpad subfolder:
.\Script\VBScript
After recompilation from the menu Script or new PSpad start you should see in
the menu Script new item Shift+BackSpace and your Shift+BackSpace should delete
last char same as BackSpace

-- 
<https://forum.pspad.com/read.php?2,77796,77797>
PSPad freeware editor https://www.pspad.com

Odpovedet emailem