**My testing minimal init.vim** The part of the mapping that is relevant: ```lua require('astronauta.keymap') vim.keymap.inoremap{'<Tab>', require("completion").smart_tab, buffer=true, silent=true} vim.keymap.inoremap{'<S-Tab>', require("completion").smart_s_tab, buffer=true, silent=true} ``` **How to reproduce** Compile the upstream at [this](https://github.com/neovim/neovim/commit/23fe6dba138859c1c22850b9ce76219141f546a0) commit. Use tab completion. **Expected behaviour** Completion popup to show up, but it doesn't. I can confirm that completion works at [this](https://github.com/neovim/neovim/commit/7a0468e7addc8745d82abdfb62d25714f38dae8f) commit.
My testing minimal init.vim
The part of the mapping that is relevant:
How to reproduce
Compile the upstream at this commit. Use tab completion.
Expected behaviour
Completion popup to show up, but it doesn't.
I can confirm that completion works at this commit.