Gilbert

Results 79 comments of Gilbert

For the record, here's a workaround: - Open `SublimeText -> Preferences -> Browse Packages...` - Open `ArcticTypescript` folder - Open `Default.sublime-keymap` - Delete object at bottom with `"keys": ["ctrl+b"]`

This behavior is conflicting with activerecord's locking. To extend @gaffneyc's example, if you try to run this: ```ruby d = Dummy.last d.with_lock do # Doesn't matter what's in here end...

Just ran into this bug too. It ignores my `default:` and initializes with an empty array instead.

Sorry for the delay, I've been sick recently. My use case is unique usernames. It'd be nice to write a simple `index :username` similar to [neo4j.rb](https://github.com/andreasronge/neo4j/wiki/lucene). On the other hand,...

I think this will be possible once the changes here are hashed out: https://github.com/Microsoft/TypeScript/issues/6508 . They are solving some angular-2-specific problems that should also make it easier to typecheck `.marko`...

How about double dot? ```marko ..list-container:hover { background: orange; } ..list-container..tasty { background: chocolate; } @media (min-width: 250px) { ..list-container:hover { background: orange; } } ```

You know, double underscore looks weird at first, but looking back on this thread a few weeks later it doesn't look bad at all. I think I prefer it since...

Other prior art: [styled-jsx](https://github.com/zeit/styled-jsx). Theirs is scoped by default, and they provide a `:global` modifier: ```jsx {` /* "div" will be prefixed, but ".react-select" won't */ div :global(.react-select) { color:...

My 2c: I personally really like `$` as the placeholder variable binding. Because it's a valid identifier, it feels like an actual variable, which it certainly is (albiet smaller in...

Ok, if `$` is too commonly used in user-land, then how about `$$`, [like the actual Hack pipe operator](https://docs.hhvm.com/hack/operators/pipe-operator)?