Remember Synchronize browsing
I looked in Options > Preferences and saw nothing about that.
Thank you.
Advertisement
Advertisement
Advertisement
Advertisement
And at this time 3 months later, is there a beta I can have access to?Right. But there's nothing to test yet.
Advertisement
Issue 10 – Synchronized browsing as session settingWhat if there was an option in the session settings (in the section where you set the local and remote directory); to automatically synchronize browsing when a new session is opened.
Issue 631 – Allow canceling the directory change when synchronized browsing failsAlso it would be nice if when a non-mutual folder is accessed (in the warning that appears) there could be an option to simply go back to the last mutual folder and not turn off synchronization; perhaps a button that just says [go back].
AutoHotKey workaround to always cancel for anyone who may want itAlso it would be nice if when a non-mutual folder is accessed (in the warning that appears) there could be an option to simply go back to the last mutual folder and not turn off synchronization; perhaps a button that just says [go back].
; Program: WinSCP ; Issue: Sychronized Browsing - Always "No" ; Workaround: ; 1. Wait for WinSCP commander interface window to exist ; 2. Wait for confirmation prompt for creating local folder ; 3. Always deny creating local folder ; 4. Return to now-descended parent folder on remote ; 5. Re-enable Sychronized Browsing feature DetectHiddenText, off ;will not search hidden window text (faster) DetectHiddenWindows, off ;will not detect hidden windows (faster) Loop { ;continue indefinitely ; WinWait* is event-driven hook implementation consuming 0% cpu while process is stored in RAM ; WinTitle=Confirm AND ahk_class=TMessageForm AND Text=&Yes is not unique to WinSCP, so minimize interference by at least wait indefinitely until WinSCP Commander window exists WinWait, ahk_class TScpCommanderForm ;wait until confirm prompt window exists and has focus where WinTitle=Confirm and ahk_class=TMessageForm WinWaitActive, Confirm ahk_class TMessageForm, &No, 600 ControlSend, TMessageButton2, {Enter}, ahk_class TMessageForm ;deny creating local folder during synchronized browsing SendInput, {Alt down}{F2}{Alt up}{Up}{Enter} ;on remote server, traverse back to parent SendInput, {Ctrl down}{Alt down}b{Ctrl up}{Alt up} ;re-enable synchronized browsing }
Advertisement
You can post new topics in this forum