Skip to content

Windows, it does not work with neovim. #53

@kgfly

Description

@kgfly

On Windows, the nvim is

NVIM v0.10.4
Build type: Release
LuaJIT 2.1.1713484068
Run "nvim -V1 -v" for more info

,which was installed by "winget install Neovim.Neovim"

init.lua is minimal,

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"

if not vim.loop.fs_stat(lazypath) then
    vim.fn.system({
        "git", "clone", "--filter=blob:none",
        "https://github.com/folke/lazy.nvim.git",
        "--branch=stable", lazypath,
    })
end

vim.opt.rtp:prepend(lazypath)


local plugins = {
    { "will133/vim-dirdiff" },
}

-- Setup all plugins with Lazy
require("lazy").setup(plugins)

Comparing 2 same folders using vim and nvim,

Upper is nvim: you can see it cannot find the difference betweew 2 folders.

Image

Lower is vim, which is just fine.

I checked that on Linux, it works fine with nvim.

Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions