Winston Chang
Winston Chang
Are you sure? I still see it listed on the web site: https://sublime.wbond.net/packages/SendText
I don't have time to investigate this, but the command that issues to send messages to iTerm2 is here: https://github.com/wch/SendText/blob/9276275158d1012497b2faed8b5c218eb32a5d15/SendText.py#L41-L44 It uses `osascript` to run some AppleScript code. If you...
That is interesting. It does seem likely that it's coming from the cachem package. It makes me wonder if there's a bug in that package.
Good call. I've bumped the dependency in shiny.
This sounds like a good idea. There is some existing code that uses timing to distinguish between clicks and double-clicks, and something similar could be used for this as well.
Have you tried clearing the prerendered cache?  Or you can run: ``` rmarkdown::shiny_prerendered_clean('Untitled/Untitled.Rmd') ```
I like the behavior of the Python REPL, which appears to be the same as bash on my computer. (Maybe because both use readline?) Suppose I start `python` and type...
One more comment: now that I think of it, providing the current best completion _and_ array of possible completions isn't a great option. It pushes complexity down to the user...
> I've noticed the python one will both auto complete and show the list depending on how much ambiguity there is. > > For example, if you type "ha" and...
I agree, I played around a little with this myself the other day and encountered the same issue. I am glad that you are looking at it, though! From the...