Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: missing idempotence in update lazy-lock.json between windows and unix #1093

Closed
3 tasks done
orumin opened this issue Oct 9, 2023 · 0 comments · Fixed by #1094 or #1096
Closed
3 tasks done

bug: missing idempotence in update lazy-lock.json between windows and unix #1093

orumin opened this issue Oct 9, 2023 · 0 comments · Fixed by #1094 or #1096
Labels
bug Something isn't working

Comments

@orumin
Copy link
Contributor

orumin commented Oct 9, 2023

Did you check docs and existing issues?

  • I have read all the lazy.nvim docs
  • I have searched the existing issues of lazy.nvim
  • I have searched the existing issues of plugins related to this issue

Neovim version (nvim -v)

0.10.0 66823fdb

Operating system/version

Ubuntu 22.04 (WSL) and Windows 11 22H2

Describe the bug

lazy-lock.json updated in Linux has newline as 'LF',
but the file updated in Windows has newline as 'CRLF'.
there is no consistency.

Steps To Reproduce

  1. update lazy-lock.json on Linux (WSL2)
    • the file has newline as 'LF'
  2. update lazy-lock.json on Windows
  3. the file's newline is replaced by 'CRLF'

Expected Behavior

saved lazy-lock.json has same newline character code wherever updated.

the problem caused by file open mode in lazy.manage.lock.lua.

local f = assert(io.open(Config.options.lockfile, "w"))

Windows's libc fwrite(3) converts LF to CRLF in auto if file is opened with "w" mode.
use "wb" mode instead of "w", this problem will be resolved.

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/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", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "folke/tokyonight.nvim",
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
1 participant