Hello
Here is solution using PSPad scripting.
In program settings / System ensure that PSpad scripting is enabled
Go to folder with PSPad installation, find subfolders .\Script\VBScript
Create new file, e.g. RealTab.vbs and paste following content into it:

cite:
--------------------------------------------------------------------------------
' it will insert reat tab on the cursot position
const module_name  = "Real TAB"
const module_ver   = "1.1"

Sub RealTab
  If (editorsCount = 0) Then
    Exit Sub
  End If
  Set editor = newEditor()
  editor.assignActiveEditor
  editor.SelText Chr(9)
end sub

' name "Init" is required, its called automatically during initialization to
create menu items
sub Init
  addMenuItem "Real TAB","", "RealTab", ""
end sub
--------------------------------------------------------------------------------


After PSpad start the new item "Real TAB" appears in the Sript menu.
If you want to add shortcut, modify RealTab.vbs and add shortcut to line as last
parameter, e.g.
addMenuItem "Real TAB","", "RealTab", "Shit+Ctrl+R"

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

Odpovedet emailem