nyngwang

Results 266 comments of nyngwang

I'm using this: ```lua use { 'Vonr/align.nvim', commit = '2004d26', config = function () vim.keymap.set('x', '', function() require'align'.align_to_string(true, true, true) end, { noremap = true, silent = true, nowait =...

@theodore-s-beers In my case I can type  by pressing `k` while in alacritty it doesn't respond (no character printed). Is this related to the second link? Thanks in advance...

If you're using folke/lazy.nvim, it seems that we _have to_ use a `':call cmd_string'` to make it work for this plugin: ```lua build = ':call mkdp#util#install()' ``` Instead of the...

Why did you care when it was 2023 and the repo seems abandoned for many years?

@BinyanHu Did you find any workaround for gradient-checkpointing that indeed works?

I just confirmed that the problem can be solved (but I'm not sure about the reason) by moving the cursor out of neo-tree buffer before calling any fzf-lua APIs.

@cseickel Is it possible to optimize the process? Say I have the option `close_if_last_window ` as to `false`, then it's possible that neo-tree will become the only window/buffer left if...

To @cseickel: > [...] > The downside is that you would have to use `:qa` now if you want to close neovim completely. Is this true even if I (use...

@cseickel: The problem can be solved by the following workaround: ```lua vim.keymap.set('n', '', function () if vim.bo.filetype == 'neo-tree' then -- from here. if #vim.api.nvim_tabpage_list_wins(0) == 1 then vim.cmd('Neotree close')...