[Sorry if duplicate, just saw message in last email that I should reply to All]
I have a reproducable example.
- `mouse-autoselect-window' does not make a difference.
- need a tilda in the address
- need to be in full screen
emacs -q -mm -l test.el
(let ((shell-cmd "ls -la")
(output-buffer "my-buf")
(default-directory "/scpx:bangmyhead@192.168.0.46:~")
(process-name "my-proc"))
(start-file-process-shell-command
process-name
(get-buffer-create output-buffer)
shell-cmd)
(switch-to-buffer output-buffer)
(with-current-buffer output-buffer
(goto-char (point-min))
(find-file-other-window "ooo")))