I have a small macro for manual tagging:
_command project_retag_modal() name_info(','VSARG2_MACRO|VSARG2_REQUIRES_EDITORCTL|VSARG2_MARK)
{
project_retag(true);
}
And I did bind it to a key:
def 'C-S-T'= project_retag_modal;
It works fine if the focus is in any document tab, but if the focus is in the Preview or References tools it's not called.
Intereseting that it works from some other tools like Build, Output, Find and Replace, but not in others like Backup History, Code Annotations, Find Symbol, Open, Projects...
Any hints how to make it work from anywhere? Thanks!