xiyaowong
xiyaowong
- add user configuration - support coc as source - use `vim.notify` instead of `vim.api.nvim_notify`
This pr mainly adds the function that will be displayed every time you switch windows, which is off by default. Also refactored some code, will be more concise
目标是可以用lua写插件,完全不懂py也可以使用 - [x] 支持 `bot_name.lua 和 bot_name/init.lua`,和py插件完全一样的定义方式 - [ ] 封装api - [ ] 提供最简sdk - [ ] 文档: lua插件介绍 - [ ] 文档(教程):不懂py只使用lua写插件
### Did you check docs and existing issues? - [X] I have read all the vscode-neovim docs - [X] I have searched the existing issues of vscode-neovim - [x] I...
tokyo-night-storm Before:  After: 
### Problem Video: https://github.com/neovim/neovim/assets/47070852/08f8c832-aeed-436d-9630-069160c6925a ### Steps to reproduce test.lua ```lua local api = vim.api vim.opt.showmode = false local c = 'a' local function append_first_line() local col = #api.nvim_buf_get_lines(0, 0, 1,...
### Problem  ### Steps to reproduce - `pip install pynvim` - Install `NVIM v0.10.0` - Run `test.py` ```python import threading from pynvim import attach from pynvim.api.buffer import Buffer def...