Robert Speicher
Robert Speicher
@geoffharcourt Is there something bound to these invocations by default? If not I'd consider it a pretty safe choice, while being much more intuitive than the `"` and `%` defaults.
I have this problem when viewing pipelines for GitLab itself -- we have over 100 jobs in one of our phases and even a 4K resolution with an unreadable font...
Just ran into this today as well. Created https://github.com/rspeicher/ransack-689-test to offer a minimal reproduction of the issue, and a [failing system test](https://github.com/rspeicher/ransack-689-test/blob/main/test/system/ransack_alias_searches_test.rb). The [`full_search` alias is defined here](https://github.com/rspeicher/ransack-689-test/blob/main/app/models/project.rb#L2-L6). I was...
Seeing this as well, even with `let g:ConqueTerm_InsertOnEnter = 0` set.
@andyw8 That would improve the documentation format, but so would `it "authenticates with OAuth successfully"`. I'm not sure the gem should be suggesting the `context`/`it` combo, because not every description...
Even making bad corrections/suggestions would be difficult, since we're basically parsing English (or any other natural language) at that point, right?
@cjbottaro Sorry, I'm not sure either. I haven't gotten to do any Elixir in over a year, and I'm not familiar enough with the Treesitter syntax to expand on it....
Seeing this as well in a very simple Gemfile and `.standard.yml` ```ruby source "https://rubygems.org" gem "rails", "~> 8.0.2", ">= 8.0.2.1" gem "standard", ">= 1.35.1" gem "standard-rails", "~> 1.4" ``` ```yaml...
I'm seeing something similar with this (contrived) example: ```ruby sig { returns(Symbol) } def example _test = lambda do |foo| return true if foo.nil? foo end some_other_method(test) :bar end ```