Trying to save a rename in Mini.files, get the message "E382: Cannot write, 'buftype' option is set" #1975
-
Contributing guidelines
Module(s)mini.files QuestionHey, guys, I am a vim noob, and recently I've been trying to write my own config. Have been testing with Oil.nvim and Mini.files, to decide which would suit me better. The thing is, Mini.files have only been good to me on navigating the folder-structure and opening files, since every time I try to change anything, I get this message: return {
'echasnovski/mini.nvim',
config = function()
require('mini.icons').setup()
require('mini.ai').setup { n_lines = 500 }
require('mini.surround').setup()
require('mini.files').setup()
require('mini.jump').setup()
end,
}
-- vim: ts=2 sts=2 sw=2 et cc= |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
'mini.files' doesn't support The reasoning behind this decision is described in #391. |
Beta Was this translation helpful? Give feedback.
'mini.files' doesn't support
:write
for updating disk to follow user edits. It has a dedicated synchronize action that is by default=
key. So instead of:write
, follow the last two steps of how manipulation is expected to work.The reasoning behind this decision is described in #391.