I am trying to write a sublime text plugin to implement Google Docs features (mainly commenting and comment threads and replies) in Sublime Text for collaborative purposes i.e. Reviewing someone else’s code and adding comments to certain lines and storing the comments in a separate file (via the plugin) so that comments can be added at any time and replied to by another user later on in ST.
I desperately needed a GUI or a way to show the comments to the user and allow the user to reply to comments etc.
for entering comments i can use the “input_panel” available in the Sublime API if needed, but I really need a way to display the comments to the user and if possible, reply within the GUI/dialog box itself. Any help would be greatly appreciated.
I have checked out the color picker plugin that uses gtk to show a dialog box on screen and allows the user to pick a color, but cannot figure out how to use the gtk module in my plugin. It gives me an import error.
Any help with this would also sort of solve my problem to some extent. Thanks in advance.