💭 nvim: `vim.o.cmdheight=0` =========================== !https://vi.stackexchange.com/questions/39947/nvim-vim-o-cmdheight-0-looses-the-recording-a-macro-messages Date: December 14, 2023 nvim: `vim.o.cmdheight=0` looses the 'recording @a' macro messages When I set vim.o.cmdheight=0 in neovim, then use macros. The recording @a messages are lost. Aside for reverting back to vim.o.cmdheight=1, how can I display these messages in lualine? Environment: Vi and Vim Stack Exchange · vi.stackexchange.com [1] I fixed my missing macro recording indicator that I lost and was never quite sure why. (because I forgot that I set cmdheight=0). ``` lua vim.cmd [[ autocmd RecordingEnter * set cmdheight=1 ]] vim.cmd [[ autocmd RecordingLeave * set cmdheight=0 ]] ``` !!! note This post is a thought [2]. It's a short note that I make about someone else's content online #thoughts [3] References: [1]: https://vi.stackexchange.com/questions/39947/nvim-vim-o-cmdheight-0-looses-the-recording-a-macro-messages [2]: /thoughts/ [3]: /tags/thoughts/