Is there a way to view the content (comment that I wrote) of an annotated tag?
See tag content
        
          srbs
          
            
            
        
        #2
      
      You can add a custom menu item to the tag menus as a workaround:
Tag.sublime-menu:
[
    {
        "caption": "View Tag Details",
        "command": "git",
        "args": { "argv": ["tag", "-l", "--format='%(refname:strip=2): %(contents:subject)'", "$tag_name"] }
    },
]
After clicking on that menu item, you can view the details by clicking the [>✓] icon to the left of the the branch name at the top center of Sublime Merge.
        2 Likes