You can’t move the general position of the display, no. However, if you’re using a recent build of ST4, you can achieve a display of the line and column and all times, even if find results are shown.
First, set this setting in your global preferences to turn off the internal line/column display:
"show_line_column": "disabled",
And then use a plugin like this to bring it back. Plugin defined status areas always are visible, but they’re also always to the left of imposed text like the text that display matches.
import sublime
import sublime_plugin
class ShowLineColumn(sublime_plugin.EventListener):
def on_selection_modified_async(self, view):
line, col = view.rowcol(view.sel()[0].b)
view.set_status('_lc', f"Line {line+1}, Column {col+1}")
on_new_async = on_selection_modified_async
Side note: The internal functionality for this displays the location of the first cursor, or tells you how many selection regions there are if there is more than one cursor. This plugin always shows you the position of the first cursor even if there are multiple.
You would need to adjust it if you’d rather it more closely mimic the internal functionality here.