Package Details: neovim-nightly-bin 0.11.0+dev+1860+g877f3b7288-1

Git Clone URL: https://aur.archlinux.org/neovim-nightly-bin.git (read-only, click to copy)
Package Base: neovim-nightly-bin
Description: Fork of Vim aiming to improve user experience, plugins, and GUIs (nightly build)
Upstream URL: https://neovim.io
Keywords: editor neovim nvim terminal vim
Licenses: custom:neovim
Conflicts: neovim
Provides: neovim, vim-plugin-runtime
Submitter: quebin31
Maintainer: boydaihungst
Last Packager: boydaihungst
Votes: 60
Popularity: 2.52
First Submitted: 2020-12-27 19:08 (UTC)
Last Updated: 2025-02-27 18:12 (UTC)

Dependencies (6)

Required by (450)

Sources (4)

Pinned Comments

quebin31 commented on 2021-10-07 15:37 (UTC)

This PKGBUILD uses the current date to refresh the source url, once it's downloaded the pkgver() function should update the version accordingly.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

quebin31 commented on 2021-10-07 15:37 (UTC)

This PKGBUILD uses the current date to refresh the source url, once it's downloaded the pkgver() function should update the version accordingly.

quebin31 commented on 2021-10-07 15:34 (UTC)

@dedguy21 source url is working fine, sometimes upstream removes the nightly release, making the source url invalid

dedguy21 commented on 2021-10-07 15:21 (UTC)

Is this package still being maintained? The pkg no longer installs because the source url is no longer valid. Is this something that will be fixed?

jambuilds commented on 2021-09-15 18:34 (UTC)

Why not use sha256sums for the integrity check? They're all listed on the release page and it'd be more secure than skipping the section altogether.

starmatt commented on 2021-09-13 21:28 (UTC)

I have the same problem as @tim999, the package does not update automatically and I get the same message

-> neovim-nightly-bin: local (0.6.0+dev+262+g643cb8a6e-1) is newer than AUR (0.6.0+dev+43+g02bf251bb-1)

@tim999, just curious, what AUR helper are you using ?

tim999 commented on 2021-09-01 15:05 (UTC)

It appears that once this package has installed a nightly version, it will not pick up the next nightly version.

:: Checking development packages...
 -> neovim-nightly-bin: local (0.6.0+dev+98+ga5c25e4f3-1) is newer than AUR (0.6.0+dev+43+g02bf251bb-1)
there is nothing to do

If you reinstall the package, it picks up the most recent nightly.

dchusovitin commented on 2021-06-15 02:13 (UTC) (edited on 2021-06-15 02:15 (UTC) by dchusovitin)

@caleb, yep, my fault. I forgot about g flag.

Atif commented on 2021-06-11 14:18 (UTC)

head and awk is unnecessary. the whole version thing can be done with sed. ./bin/nvim nvim --version | sed -n 's/^NVIM v//;1s/-/+/gp'

alerque commented on 2021-06-10 19:28 (UTC)

@dchusovitin Sorry, but s/v// only replaces the first instance of v, you would need a global flag s/v//g to replace all instances. Hence if you know the string starts with a "v" you don't need to anchor the match, just don't do a global replace.

dchusovitin commented on 2021-06-09 18:34 (UTC)

@quebin31, sorry, but: sed 's/v//' - it will replace all "v" (commit hash may contain "v") sed 's/^v//' - instead of, remove only first "v" char