Closed damccull closed 2 months ago
Ok so the only difference I can find so far is that I am updating to 0.10.1 and it's throwing that error.
New info. Even if I set back to nvim 0.10.0, it's still having the same issue.
Im here with the same issue on NVIM v0.11.0-nightly+9d74dc3 and this version of eyeliner:
eyeliner-nvim = buildVimPlugin {
pname = "eyeliner.nvim";
version = "2024-08-05";
src = fetchFromGitHub {
owner = "jinh0";
repo = "eyeliner.nvim";
rev = "2ee9e64d4c8133da1131edf0e64641e32dd16396";
sha256 = "057hkbd5ab1xm2x47b0wvd4qafwinlwhwixqbl6dgdnhbi8my6d0";
};
meta.homepage = "https://github.com/jinh0/eyeliner.nvim/";
};
Potentially related: #51 I'm having the same issue on the latest unstable nixpkgs.
Im here with the same issue on NVIM v0.11.0-nightly+9d74dc3 and this version of eyeliner:
eyeliner-nvim = buildVimPlugin { pname = "eyeliner.nvim"; version = "2024-08-05"; src = fetchFromGitHub { owner = "jinh0"; repo = "eyeliner.nvim"; rev = "2ee9e64d4c8133da1131edf0e64641e32dd16396"; sha256 = "057hkbd5ab1xm2x47b0wvd4qafwinlwhwixqbl6dgdnhbi8my6d0"; }; meta.homepage = "https://github.com/jinh0/eyeliner.nvim/"; };
It's fixed in master. Here's the version I'm using:
eyeliner-nvim = pkgs.vimUtils.buildVimPlugin {
pname = "eyeliner.nvim";
version = "2024-08-09";
src = pkgs.fetchFromGitHub {
owner = "jinh0";
repo = "eyeliner.nvim";
rev = "7385c1a29091b98ddde186ed2d460a1103643148";
hash = "sha256-PyCcoSC/LeJ/Iuzlm5gd/0lWx8sBS50Vhe7wudgZzqM=";
};
meta.homepage = "https://github.com/jinh0/eyeliner.nvim/";
};
Im here with the same issue on NVIM v0.11.0-nightly+9d74dc3 and this version of eyeliner:
eyeliner-nvim = buildVimPlugin { pname = "eyeliner.nvim"; version = "2024-08-05"; src = fetchFromGitHub { owner = "jinh0"; repo = "eyeliner.nvim"; rev = "2ee9e64d4c8133da1131edf0e64641e32dd16396"; sha256 = "057hkbd5ab1xm2x47b0wvd4qafwinlwhwixqbl6dgdnhbi8my6d0"; }; meta.homepage = "https://github.com/jinh0/eyeliner.nvim/"; };
It's fixed in master. Here's the version I'm using:
eyeliner-nvim = pkgs.vimUtils.buildVimPlugin { pname = "eyeliner.nvim"; version = "2024-08-09"; src = pkgs.fetchFromGitHub { owner = "jinh0"; repo = "eyeliner.nvim"; rev = "7385c1a29091b98ddde186ed2d460a1103643148"; hash = "sha256-PyCcoSC/LeJ/Iuzlm5gd/0lWx8sBS50Vhe7wudgZzqM="; }; meta.homepage = "https://github.com/jinh0/eyeliner.nvim/"; };
Thanks I'll try this override.
Thanks for the heads-up @mateusauler. Pinning to this repo's current master commit fixed it for me. I'll try going back to nixos's main version of it in a few days when it hopefully gets updated.
Thanks @mateusauler will check this out right away!
Hey @mateusauler just to ask a really stupid question, how do you get the rev and hash of a specific branch or version? I have never worked out how to do it!
Hey @mateusauler just to ask a really stupid question, how do you get the rev and hash of a specific branch or version? I have never worked out how to do it!
I usually open the commit I want and copy it from the URL bar. Or you can use the branch name as well.
For the hash, use a blank string and read the error nix throws at you. It'll contain the hash.
So simple! thank you very much @damccull
@mcgilly17, sorry for the late answer. I do it just like @damccull said. You can also add it as a flake input and grab the results from flake.lock, whatever you prefer.
Thanks @mateusauler appreciate you coming back on this!
Hello. I know nixos is probably not the target audience, but I'm getting a weird error from your plugin that didn't used to happen:
My guess is something updated in nixos's nvim that makes it incompatible with your plugin, but I'm not familiar with nvims programming API so I don't know what to do here. Can you point me in the right direction?