ygt-mikekchar
ygt-mikekchar
You might have already figured this out, but looking at the code it seems like --watch has changed to --watchFolders (at least in the 2.0 beta code). I tested it...
I'm having a similar problem. Just to explain the issue, I use irssi to log into slack. Slack uses an application password (not of my choosing and not particularly memorable)...
I'm running into a similar problem (though it might be something else I'm doing). I have a Japanese keyboard and every time I run my game the keyboard seems to...
I know this issue is a year old, but in case anyone runs into it: - elm-repl seems to link to libtinfo now. You need to install the `libtinfo` package...
Agreed. I can't think what you could do about it, though. Upgrading the library will break other (arguably more popular) distros. In the end, I just built elm myself and...
The code that was breaking for me was in parameters: ``` def foo(bar:, baz:) puts(bar) puts(baz) end bar = 27 baz = 32 foo(bar:, baz:) ``` I'm not sure that...
Sorry, I think there is a bit of confusion here :-) What I meant was that if you have any statement of the form `foo(bar:, baz:)` Solargraph does not seem...
Create a file called foo.rb and add this code: ``` # frozen_string_literal: true # This is Foo class Foo def initialize @good = 'good' end def foo(bar:, baz:) puts(bar) puts(baz)...
Well, that seems like good news. It must be a problem in my setup. I'll play around with it some more. Thanks!