lambdalisue / vim-fall

🍂 Another fuzzy finder designed for Vim and Neovim and implemented in Denops
https://jsr.io/@lambdalisue/vim-fall
MIT License
41 stars 2 forks source link

Can't run with lazy #15

Closed marcelarie closed 4 months ago

marcelarie commented 4 months ago

I tried to install the plugin but I got this error:

[denops] Failed to load plugin 'fall': TypeError: Could not find constraint in the list of versions: @std/assert@^0.226.0
[denops]   Specifier: jsr:/@std/assert@^0.226.0/assert
[denops]     at https://jsr.io/@std/cli/0.224.5/parse_args.ts:19:24

this is how I installed it:

return {
    "lambdalisue/vim-fall",
    lazy = false,
    dependencies = {
        "vim-denops/denops.vim",
    },
}

My nvim version is:

NVIM v0.11.0-dev-155+g9eb042600
Build type: Release
LuaJIT 2.1.1716656478
Run "nvim -V1 -v" for more info
Shougo commented 4 months ago

Please execute the command from shell.

$ deno cache -r {your vim-fall directory path}/denops/fall/main.ts
Shougo commented 4 months ago

Please see this.

https://github.com/vim-denops/denops.vim/issues/358

marcelarie commented 4 months ago

Thanks @Shougo. Now I can run Fall file for example, but it does not open the file or search for anything and I get this error:

[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
[denops] [fall] Failed to load picker config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/picker.yaml'
[denops] [fall] Failed to load style config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/style.yaml'
[denops] [fall] Failed to load extension config file: Is a directory (os error 21): readfile '/Users/m.manzanares/.config/nvim/fall/extension.yaml'
Shougo commented 4 months ago

You should check the files.

It seems directory.

/Users/m.manzanares/.config/nvim/fall/extension.yaml
/Users/m.manzanares/.config/nvim/fall/style.yaml
/Users/m.manzanares/.config/nvim/fall/picker.yaml
lambdalisue commented 4 months ago

It's a bug. I'll fix it.

lambdalisue commented 4 months ago

Done. Remove ~/.config/nvim/fall directory and update vim-fall then retry. Note that vim-fall is still alpha version and not ready for daily use. I do force-update even on main branch

marcelarie commented 4 months ago

Done. Remove ~/.config/nvim/fall directory and update vim-fall then retry. Note that vim-fall is still alpha version and not ready for daily use. I do force-update even on main branch

Thanks !

Shougo commented 4 months ago

Closed?

marcelarie commented 4 months ago

Yes, thanks to both!