Clint Winter

Results 5 comments of Clint Winter

Here's an addition to @towry's for `lsp_document_symbols`, `lsp_dynamic_workspace_symbols`, and `buffers`. Buffers: ![Screenshot 2023-10-06 at 9 27 58 AM](https://github.com/nvim-telescope/telescope.nvim/assets/15218914/6b83e963-dc32-4247-9078-b16eddb3fde6) Document symbols: ![Screenshot 2023-10-06 at 9 28 07 AM](https://github.com/nvim-telescope/telescope.nvim/assets/15218914/d1b47f2f-539e-4da2-9ef7-9ec1daad82c9) Workspace symbols: ![Screenshot...

At least for Laravel, any logic in a custom request class that uses route-model binding is broken. For example: https://laravel.com/docs/9.x/validation#authorizing-form-requests ```php use App\Models\Comment; public function authorize() { return $this->user()->can('update', $this->comment);...

The code sample I used would be inside a request class. It would be attempting to access the comment via route-model binding. For example a route like `Route::patch('/comments/{comment}', ...)`. The...

Good catch! Let's update the readme instead as it's more standard for the tag to have a unique name.

The versions are very close other than the few comments I left, so I was trying to be nice and allow you to make a successful contribution rather than undercut...