I am mounting a remote server via Mountain Duck, then editing files in that mounted directory with ST3. Every once in a while I get a pop up saying “[filename] has changed on disk. Do you want to reload it?”.
The file has not changed on disk, so I don’t want to reload - ever. I have my user settings looking like this:
{
"color_scheme": "Packages/User/SublimeLinter/Monokai Extended (SL).tmTheme",
"default_line_ending":"unix",
"detect_indentation": false,
"draw_minimap_border": true,
"font_face": "Jetbrains Mono",
"font_size": 9,
"ignore_changed": true,
"ignore_inodes": true,
"ignored_packages":
[
"Markdown",
"SublimeLinter-csslint",
"Vintage"
],
"scroll_past_end": true,
"tab_size": 4,
"theme": "Flatland Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
So as you can see, both ignore_changed
and ignore_inodes
are set. I know this file is being used, because if I change font_size
and save, the font changes immediately.
How can I stop that popup?