Discovered a problem with x11vnc and Fedora 35. I have disabled Wayland.
Each virtual machine couldn’t register left parentheses or right ( “(” and “)” ). this is through UltraVNX or TigerVNC. However, could do locally.
Fix for this is follows – on the machine running x11vnc – set the x binding as such
xmodmap -e “keycode 187 = Shift_L 0”
xmodmap -e “keycode 188 = Shift_L 9”
There, that is the temporary fix.
BTW: I used the command
xmodmap -pke
to determine what the temporary fix should be.
xmodmap -pke
((default))
keycode 187 = parenleft NoSymbol parenleft
keycode 188 = parenright NoSymbol parenright
and then the temporary fixed result from xmodmap -pke
((temporary fix))
keycode 187 = Shift_L 0 Shift_L 0
keycode 188 = Shift_L 9 Shift_L 9
https://github.com/notepad-plus-plus/notepad-plus-plus/issues/9231