ConEmu with Git Bash delete key won't work

I am using ConEMU with Git Bash and everything works well except for the delete key. When I press the delete key, I get ~ instead of the character being deleted. The only way to delete is to get in front of the character and press backspace.

I can't see this issue using Powershell, so I suppose something else should be breaking it.

I have searched the settings under keys and macros but cannot find anything to fix my problem.

+3


source to share


3 answers


Put this in your .bashrc. Works great for me.



export TERM = xterm

+3


source


Just go to the git menu in git bash ..

then to the terminal



change the type to xterm ... and backspace will work after restarting bash terminal.

+1


source


I am editing Minttyrc file - SELECTED ONLY

<Do not p> BoldAsFont = no
font = the Lucida Sans Typewriter
Term = use Xterm
Transparency = low
CursorBlinks = no
CursorType = block
OpaqueWhenFocused = yes
BackspaceSendsBS = no
CtrlAltIsAltGr = no
AltFnShortcuts = yes
CopyOnSelect = no
not CopyAsRTF = no
ClicksPlaceCursor = yes
DeleteSendsDEL = no
CtrlShiftShortcuts = yes
ClicksTargetApp = no
0


source







All Articles