Rob
Rob
@eirnym I will do that, yes. [Here is a screencast](https://imgur.com/a/j0LPbwd) with both keyboard and mouse annotations that shows some of the behavior I'm talking about. In this case, I wasn't...
@eirnym I'm not positive what you're asking for, but here are a few screenshots. If this isn't what you need, let me know.  
@ychin sure, no problem. Thank you for letting me know. ```console > defaults read org.vim.MacVim | grep 'MM\|SU' MMAutosaveColumns = 159; MMAutosaveRows = 50; MMCurrentPreferencePane = Advanced; MMTopLeftPoint = "{0,...
I realized this morning that my touch bar has a pending question on it. I don't know the text of the question, but it's the one where a file has...
I’m experiencing similar issue with another app, Alfred. They’re describing the issue slightly differently but I think the root cause is likely the same. https://www.alfredforum.com/topic/14110-alfred-406-toggle-breaks-on-catalina/
```crystal def results : Array(T) cache_store .fetch(cache_key, as: Array(T)) { exec_query } .tap { |records| preloads.each(&.call(records)) } end ``` This has been working for me this afternoon. Here is a...
The tricky part with this is how delicate it is to provide a nice interface to the developer while still retaining as much compile time safety as possible. It may...
After looking over this and watching the discussion, I'm aware that there were at least three different assumptions about what a bulk insert/upsert might be used for. I observed these...
I ran into this today, and the workaround was to use a module instead of a superclass: ```crystal module SavePost macro included needs rollback : Bool = false end end...
Right now the migration code is always compiled into the whole app, but I don't think it needs to be. In most executions the migration code will never be run....