Stefan

Results 4 comments of Stefan

Confirmed. I have the same issue. Whenever the focus was lost (e.g. because I typed in the main window), I have to precisely select the line of input again in...

Hello, yes I did. I verified with pip list. (Removed a few entries for brevity) ``` arrow (0.12.1) ... --> custom_module (0.0.1.4, /home/stefan/git/custom_module) ... numpy (1.14.0) pandas (0.22.0) ptyprocess (0.5.2)...

Hello Fabian, thanks for the quick feedback! As a mini contribution for now, here is how I connect via SSH to a remote MySQL instance. Maybe it is useful for...

Can you try replacing the relative paths in your docker compose file? Replace this ``` volumes: - ./ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key - ./ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key ``` with ``` volumes: - ${PWD}/ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key - ${PWD}/ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key ``` or...