Nicolas Hillegeer
Nicolas Hillegeer
I was confused about why the integration wasn't working for me either. Turns out it's because of this in my config: ```vim nnoremap / /\v vnoremap / /\v ```
That actually does something, which is much better than before! It's not exactly what I want, for example with this C code I first move to the first letter of...
Will close this now as it seems to have reached a conclusion. If anything is left to do or say, please re-open.
If I had known about the capability for dumping patched termcap info from nvim, I would've saved some work in https://github.com/neovim/neovim/issues/19040. Thanks for showing that @klemensn.
@yangzh were you able to try again with the approach that @neild posted? If so can you comment or close the issue?
For the time being, it may be possible to make do with bpftrace: https://github.com/aktau/dotfiles/blob/master/bpftrace/forkexecsnoop.bt.
> What we can do is to keep the memory mapped information of traced processes cached in bpftrace, and use this cached information if the process has exited when we're...
Note that we are planning to make luajit the default interpreter for neovim. The vanilla lua interpreter will mostly be used for debugging. Luajit is not as fast as well...
Seems like it's merged. I'm currently still using one of the first things you gave me: ```lua local function adjust_paste(reg_name, paste_type, paste_cmd) local reg_type = vim.fn.getregtype(reg_name) vim.fn.setreg(reg_name, vim.fn.getreg(reg_name), paste_type) vim.cmd.normal([["]]...
I took a page out of @echasnovski's [config](https://github.com/echasnovski/nvim/blob/5575380ec00e5a159f8db93e97c3799946f4d677/plugin/11_mappings.lua#L11-L13): ```lua -- Paste before/after linewise vim.keymap.set({ "n", "x" }, "[p", [[exe "iput! " . v:register]], { desc = "Paste Above" }) vim.keymap.set({...