Package Details: neovim-orgmode-git 0.2.1.r278.gdadf563-1

Git Clone URL: https://aur.archlinux.org/neovim-orgmode-git.git (read-only, click to copy)
Package Base: neovim-orgmode-git
Description: Orgmode clone for Neovim
Upstream URL: https://github.com/kristijanhusak/orgmode.nvim
Licenses: MIT
Groups: neovim-plugins
Conflicts: neovim-orgmode
Provides: neovim-orgmode
Submitter: lmartinez-mirror
Maintainer: None
Last Packager: lmartinez-mirror
Votes: 2
Popularity: 0.000001
First Submitted: 2021-10-15 04:28 (UTC)
Last Updated: 2023-01-25 17:43 (UTC)

Required by (0)

Sources (1)

Latest Comments

ioctl commented on 2023-01-25 15:13 (UTC)

Please add neovim-nvim-treesitter to dependency list in this package and in neovim-orgmode too, because it's actually required.

patatahooligan commented on 2022-09-29 12:21 (UTC)

Upstream has removed ftdetect as of 113d41d095434ff9d47683b2117ddbf57933a559. It has to be removed from the find command in package().

diff --git a/PKGBUILD b/PKGBUILD
index af491b9..4533a77 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -23,7 +23,7 @@ pkgver() {

 package() {
    cd "$pkgname"
-   find doc ftdetect ftplugin indent lua syntax -type f -exec install -Dm 644 '{}' "$pkgdir/usr/share/nvim/runtime/{}" \;
+   find doc ftplugin indent lua syntax -type f -exec install -Dm 644 '{}' "$pkgdir/usr/share/nvim/runtime/{}" \;
    install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
    install -Dm 644 README.md DOCS.md -t "$pkgdir/usr/share/doc/$pkgname/"
 }