Yuta Katayama
Yuta Katayama
In my environment, I feel like the current HEAD(d25889ab7607918a152bab5ce4d14e54575ec11b) has fewer crashing events (but sometimes it crashes).
new minimal init.lua ```lua vim.cmd([[syntax enable]]) vim.cmd([[filetype plugin indent on]]) local install_path = vim.fn.stdpath("data") .. "/site/pack/packer/opt/packer.nvim" if vim.fn.empty(vim.fn.glob(install_path)) == 1 then vim.api.nvim_command("!git clone https://github.com/wbthomason/packer.nvim " .. install_path) end vim.cmd([[packadd packer.nvim]])...
I've investigated and this problem seems to occur from this commit (126fe7fbc9c88c412c8067d9d146d998baf6dd47 https://github.com/neovim/neovim/pull/19916).
@zeertzjq Thanks for your reply. This is the reproduction steps. 1. use this minimal init.lua ```lua vim.cmd([[syntax enable]]) vim.cmd([[filetype plugin indent on]]) local install_path = vim.fn.stdpath("data") .. "/site/pack/packer/opt/packer.nvim" if vim.fn.empty(vim.fn.glob(install_path))...
Thank you very much :smile: I can confirm that it will not crash anymore.
私の環境では普通に動いてますよ。いつもありがとうございます :smile: NVIM v0.3.0
Thank you for your replay. I understood :smiley: