cmp-dap icon indicating copy to clipboard operation
cmp-dap copied to clipboard

vim.api.nvim_buf_get_option deprecated

Open gabrielrov opened this issue 7 months ago • 1 comments

vim.api.nvim_buf_get_option, described on the readme setup section, is currently deprecated as per: https://neovim.io/doc/user/deprecated.html#nvim_buf_get_option()

gabrielrov avatar Apr 30 '25 21:04 gabrielrov

you can use:

vim.api.nvim_get_option_value("buftype", {})

nik-zsh avatar May 08 '25 02:05 nik-zsh