From 528c4c3a698c6ba4a7c72fd020db87dc0c3c29fa Mon Sep 17 00:00:00 2001 From: glepnir Date: Fri, 10 May 2024 18:24:41 +0800 Subject: [PATCH] fix ci and update doc for requirement nvim-0.10 --- README.md | 1 + test/indentmini_spec.lua | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c90444..71c1931 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # indentmini.nvim A minimal less than ~130 lines and blazing fast indentline plugin. no much more features but useful! +Requirement **neovim-nightly** ![old](https://github.com/nvimdev/indentmini.nvim/assets/41671631/d836db79-4c41-45bc-99cb-d9f807dfe9af) diff --git a/test/indentmini_spec.lua b/test/indentmini_spec.lua index 438b5f0..f18011a 100644 --- a/test/indentmini_spec.lua +++ b/test/indentmini_spec.lua @@ -60,7 +60,6 @@ local function screen(lines) vim.rpcrequest(channel, 'nvim_set_option_value', 'tabstop', 2, { scope = 'global' }) vim.rpcrequest(channel, 'nvim_set_option_value', 'softtabstop', 2, { scope = 'global' }) - vim.rpcrequest(channel, 'nvim_exec_autocmds', 'BufEnter', { group = 'IndentMini' }) vim.rpcrequest(channel, 'nvim_set_option_value', 'shiftwidth', 2, { buf = 0 }) vim.rpcrequest(channel, 'nvim_set_option_value', 'expandtab', true, { buf = 0 })