From 6472cc846120a08d1fa9b63385e2f76d0127b57b Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 5 Sep 2024 06:13:40 +0200 Subject: [PATCH] docs: fixed docs about building and bundling --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index df3d7af..8eb0e65 100644 --- a/README.md +++ b/README.md @@ -83,15 +83,15 @@ MP command autocompletes available options for current state, so cycle if * `vim.g.codemp_neo_tree` will enable the neo-tree window, instead of the crude integrated one ## building -this plugin relies on the native codemp lua bindings: just compile the main `codemp` project with `lua` feature enabled -and place a `lua.so` or `lua.dll` together with the plugin lua files while bundling +this plugin relies on the native codemp lua bindings: just compile the main `codemp` project with `lua` feature enabled, rename the +output library into `native.so` (or `.dll` or `.dylib`) and place it together with the plugin lua files while bundling ``` .config/ |-nvim/ : |-lua/ : : |-codemp/ - : : : |- lua.(so|dll) + : : : |- native.(so|dll|dylib) : : : |- init.lua : : : : ... ```