Using mintty as terminal, running it like this :
C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico -
I cannot type characters like ~,[,{ ...
But I can type all those characters on the windows cmd terminal, and on cygwin default terminal, running cygwin.bat :
@echo off
C:
chdir C:\cygwin64\bin
bash --login -i
What's doing mintty on my keyboard ?
* This is only happening when logged remotely using Teamviewer *
Ctrl-V
\
results in^[\
(where ESC is displayed as^[
). Did you find any clue to what the reason may be? – ScrimmageC:\cygwin64\bin\bash.exe --noprofile --norc --noediting
, which should disable readline and prevents bash from executing (some) startup scripts; and (2) that Windows programs like Notepad++ or cmd display the characters just fine, which seems to indicate a cygwin or bash issue. – Scrimmage