G Roques
G Roques
> If during these events leap.nvim uses `g@` operator, then you could try using [custom operators](https://github.com/rasulomaroff/reactive.nvim#custom-operators) > > Basically, you would set a custom operator in your shortcut and then...
I'm also interested in this PR. The changes don't look too bad in order to support this. @rebelot Do you mind taking a look when you find time please?
@metalinspired Can you provide some example configuration of how one would use this? It looks like you can define multiple events with the same `pattern` and `callback`. For example, redrawing...
> @gbroques you pretty much got it how it works. I completely forgot to add examples 🤦🏻♂️ Basically, the idea was to allow user to repeat the originally supported configuration,...
> @gbroques according to the [docs](https://neovim.io/doc/user/api.html#nvim_create_autocmd()) they are optional @metalinspired Either `callback` or `command` is required. You can try the following, and should see an error: ```lua vim.api.nvim_create_autocmd({'BufEnter', 'BufWinEnter'}, {...
> As a first pass at a JShell client, I would suggest starting with using `g:conjure#client#jshell#stdio#command` set to `jshell` with the instruction that the `CLASSPATH` environment variable be set before...
> > 2. Ideally this would happen automatically for the user, but maybe as a first pass we make the user manually select the method and send it to Jshell...
> > 3. We could also filter out the "$2 ==> " part, but they're maybe useful to the user? > > The Guile (Scheme) REPL also prints out something...
I would like this feature to make the background of the entry green for tests like IntelliJ IDEA. See `getWorkspaceId()` in the following image:
@dee-tree It looks like this is possible, but not easy or straight-forward. See `telescope.make_entry` and `telescope.pickers.entry_display` in the help docs: https://github.com/nvim-telescope/telescope.nvim/blob/f06e7a887185796e0d37088237572f8ce03a1553/doc/telescope.txt#L2505-L2597 They suggest reading the source code in [make_entry.lua](https://github.com/nvim-telescope/telescope.nvim/blob/b4da76be54691e854d3e0e02c36b0245f945c2c7/lua/telescope/make_entry.lua). You...