Subhaditya Nath

Results 101 comments of Subhaditya Nath

> - do not echo received text back to the editor (I think this is already done) I can confirm. This is an excerpt from my plugin's log - ```log...

I am a total noob in JS, so as far as I understood, it implements a timeout, and rejects everything it receives till the timeout expires. if that's true, then...

BTW, I just tried to reproduce #180, but couldn't see the effect. Is there any kind of logging facility available to investigate? Also, could you please check if #180 is...

> if you use longer content Ah, right! :facepalm: Tried with longer content, and yes, it occurs. --- Could you grant me push access to the sublime extension repo? I...

I think that the current method is sufficient... but I think that it would be more intuitive if clicking on the extension caused us to enter `Toggle mode` instead of...

@glacambre off topic, Does reddit.com use Monaco editor? If no, then what does it use?

`GhostText.py` ```diff +do_not_respond = False ... def on_message(self, text): + global do_not_respond + do_not_respond = True try: request = json.loads(text) self._current_view.run_command('replace_content', request) self._current_view.window().focus_view(self._current_view) except ValueError as e: Utils.show_error(e, 'Invalid JSON')...

I tried it, it doesn't work :disappointed:

Can you please grant me push access to that repo? I will do my changes in a new branch. If the code seems OK, and I am able to understand...

Well, I don't think it's possible to access the absolute position of the text area relative to your monitor.... --- Since you use neovim, check out [nvim-ghost.nvim](https://github.com/subnut/nvim-ghost.nvim). It's awesome as...