Joseph Schoblaska
Joseph Schoblaska
`rgba(235, 97, 80, 0.8)` is what chess.com uses - I'm not married to the particular color though (and it might be nice to be able to customize it).
This should be fixed by https://github.com/thiagopradi/octopus/pull/522
I haven't looked at this issue since I opened my PR. I closed it because this project is in maintenance mode with the release of Rails 6 and it seemed...
I haven't looked at the implementation, but +1 to randomly-ordered test execution by default being super important.
I think that @LamprosPitsillos was proposing showing the file browser results as a tree if the depth option is greater than 1. Eg (current UI on the left, proposed UI...
That's massively helpful, thank you!
@tobealive Go for it! I haven't started on anything, but let me know if you want someone to bounce ideas off of.
You can achieve this with [telescope-file-browser](https://github.com/nvim-telescope/telescope-file-browser.nvim) and a custom function. This action will launch telescope-file-browser in folder mode, and then launch live_grep within the selected directory: ```lua local ts_select_dir_for_grep =...
@svanharmelen ``` attempt to index field 'extension' (a nil value) ``` The error says that `require("telescope").extension` is `nil`. It should be `require("telescope").extensions` (with an "s"). I also use `live_grep_args`. Here's...
@svanharmelen Does folder browser (`:Telescope file_browser files=false`) work if you open it by itself? If not, it might be an issue with [telescope-file-browser](https://github.com/nvim-telescope/telescope-file-browser.nvim).