Marco Martinelli

Results 17 comments of Marco Martinelli

Two years later but might be useful for someone else: ``` # Create conf _C = CN() # Allow creating new keys recursively. _C.set_new_allowed(True) _C.merge_from_file(filename) ```

I set it up with lsp-zero and have the same issue

> function M._CompleteDone() > local completed_item = api.nvim_get_vvar('completed_item') > if not completed_item or not completed_item.user_data then > return > end > local lnum, col = unpack(api.nvim_win_get_cursor(0)) > local item =...

Still an issue 👍

I'd also override pre-existing mappings. For example, I use for closing windows, and mason does not redefine it to the 'cancel' action.

Here is a snippet you can use however you see fit. Just make sure you setup mason beforehand, though I wouldn't lazy load it since its not recommended. ```lua local...

@stevearc Just to add to this issue, were you able to reproduce the double confirmation for this sequence? One from vim.fn.confirm and the other from Oil itself.