Fix copy-paste error in nvim ephemeral plugin
This commit is contained in:
parent
aad667f6ce
commit
e3c60c1d1f
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
|||
vim.api.nvim_create_user_command("Pin", function()
|
||||
vim.bo.bufhidden = "delete"
|
||||
vim.bo.bufhidden = nil
|
||||
end, {})
|
||||
|
||||
vim.api.nvim_create_user_command("Drop", function()
|
||||
vim.bo.bufhidden = nil
|
||||
vim.bo.bufhidden = "delete"
|
||||
end, {})
|
||||
|
||||
vim.api.nvim_create_user_command("Ephemeral", function(params)
|
||||
|
|
Loading…
Reference in a new issue