79238245

Date: 2024-11-29 20:08:49
Score: 1
Natty:
Report link

Use an autocommand using the vim API:

vim.api.nvim_create_autocmd("InsertLeave", {
  callback = function()
      print("Exited insert mode!");
  end
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Misguided Chunk