The window search order is configurable but not documented. It's a global setting but you could wrapper any command with any setting and save and restore the setting.
We may add this to the GUI at some point. It has MANY options including an option for making SlickEdit act exactly like visual studio ('N' - option but Smart next window style must be set to "Smart next window").
Create a macro file with the code below in it. Then run the command that it defines to change the find window option.
#include "slick.sh"
_command void set_find_window_options_my_way()
{
// This is the default setting
//
// Visable current tab Group, Visible current Mdi window
// Visable Anywhere, current tab Group, current Mdi window, Anywhere
//_default_option(VSOPTIONZ_DEFAULT_FIND_WINDOW_OPTIONS,"VG,VM,VA,G,M,A");
//
// This is probably what you want
//
// current tab Group first
_default_option(VSOPTIONZ_DEFAULT_FIND_WINDOW_OPTIONS,"G,VG,VM,VA,M,A");
// Indicate config changed so option gets saved
_config_modify_flags(CFGMODIFY_OPTION);
}
Hope this helps. Usually, users want to view multiple files at once which is why the default settings are what they are.