windows.nvim icon indicating copy to clipboard operation
windows.nvim copied to clipboard

Conflicts with the `asyncrun.vim` plugin?

Open AGou-ops opened this issue 2 years ago • 0 comments

https://user-images.githubusercontent.com/57939102/191646109-7a41b9cb-22e7-4a25-9717-dd77b1518e99.mp4

I can't do anything in asyncrun.vim's terminal. When I press enter in the terminal, it prompt call vm#commands#ctrln(v:count1).

  • MacOS 12.6
  • iTerm2 v3.4.16
  • neovim 0.7.2
  • commit: eb4b04f

async.vim command: :AsyncRun -mode=term -pos=bottom -rows=10 go run %

config

require("windows").setup({
    autowidth = {      --         |windows.autowidth|
    enable = true,
    winwidth = 10,     --          |windows.winwidth|
    filetype = {      --      |windows.autowidth.filetype|
    help = 2,
},
    },
    ignore = {       --      |windows.ignore|
    buftype = { "quickfix" },
    filetype = { "NvimTree", "neo-tree", "undotree", "gundo" }
},
animation = {
    enable = true,
    duration = 200,
    fps = 60,
    easing = "in_out_sine"
}
})

AGou-ops avatar Sep 22 '22 02:09 AGou-ops