From 27f1e547778c37282c0e4c5b04b63c02b17c38c5 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Mon, 8 Apr 2024 21:04:24 +0100 Subject: [PATCH] Remove FIXME that was already fixed in 9f1c0228 --- lua/commands.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lua/commands.lua b/lua/commands.lua index 0686519..1f76c57 100644 --- a/lua/commands.lua +++ b/lua/commands.lua @@ -10,10 +10,6 @@ end, { range = '%' }) -- :TabWidth set the tab width for the current buffer vim.api.nvim_create_user_command('TabWidth', function(opts) -- Set the tab width for the current filetype - -- FIXME: Doesn't seem to cover all bases in neovim when editorconfig is - -- involved, specifically with pressing o/O in C++ from a line with a brace. - -- This might be related to tree-sitter indentation? Or could be that I've - -- not ported over all my filetype settings yet. local width = tonumber(opts.args) vim.opt.tabstop = width vim.opt.shiftwidth = width