James Trew

Results 305 comments of James Trew

There technically is a `separator_hl` option deep inside the results entry creation mechanism that you could take advantage of but it's pretty inaccessible at the moment and none of the...

@MovieMaker93 that's right. https://github.com/nvim-telescope/telescope.nvim/blob/5665d93988acfbb0747bdbf4f4cb583bcebc8930/lua/telescope/make_entry.lua#L925-L932 We could technically make `current_buffer_fuzzy_find` and other pickers using `entry_display` take a `separator_hl` option but I feel like just adding a new hl group, something like...

On second thought, maybe `TelescopeResultsEntrySeparator` might be clearer. > However, I don't know where to specify this hlgroup option. I think you could just do something like ```lua configuration.separator_hl =...

> Check if a window that the file is going to be open in has winfixbuf then choose another window - previously selected by the user (if possible to determine)....

I was experiencing this as well with copilot/sonnet-3.5/7 but the issue has gone away after switching to the claude provider.

Maybe we can add a `include_unlisted_buffers` option? If you comment out these lines, do you find that it helps with what you're looking for? https://github.com/nvim-telescope/telescope.nvim/blob/b5fd7f7ae0ea4537511077ed8ef4a6021cedba2f/lua/telescope/builtin/__internal.lua#L908-L910

telescope-fzf-native doesn't yet support this. It's been on the to-do list for over 4 years I wanna say but doesn't look like it's happening anytime soon.

I'm leaning on completely gutting some/most of our lsp picker code and opting to leverage the `on_list` option of `vim.lsp.ListOpts` on many of the `vim.lsp.buf.*` functions. We're needlessly maintaining a...

Sorry, I didn't mean to close the issue. You can have a working solution locally? Is that just a fork?

Right right. Let's put a pin on this for the time being. Like a mentioned, I'd like to refactor the telescope lsp code significantly but I'd like to get other...