nvim-treesitter/playground

Segmentation fault on buffer commands to playground buffer

kaddkaka opened this issue · 0 comments

Neovim crashes with segmentation fault in at least these two scenarios (Not sure where the problem resides):

  1. Toggle the playground buffer and show it as the only window: Do :bd -> crash!
  2. Stand in the playground buffer (doesn't matter if other windows or buffers are open): Do :bp -> crash!

neovim version:

NVIM v0.5.0-dev+1216-g8e496b9df
Build type: RelWithDebInfo
LuaJIT 2.1.0-beta3

tree-sitter version: 3 April 2021: nvim-treesitter/nvim-treesitter@7deedc4
nvim-treesitter/playground version: 22 March 2021 d96cef5

init.vim contents:

set packpath+=$SCRIPT_REPO_ROOT/vim/
let mapleader = " "

packadd nvim-treesitter/nvim-treesitter
packadd nvim-treesitter/playground

lua <<EOF
require'nvim-treesitter.configs'.setup {
  ensure_installed = {python, cpp, ses}, -- one of "all", "maintained", or a list of languages
  highlight  = {enable = true},
  playground = {enable = true},
}
EOF