Skip to content

Releases: bloznelis/before.nvim

1.1.0

12 Mar 19:39
Compare
Choose a tag to compare

1.1.0 release of before.nvim

Multiple improvements regarding the quickifx and telescope previewers. Backwards compatibility is maintained, but it's recommended to use new functions instead of the old show_edits one:

-- Show and look for previous edits in telescope
vim.keymap.set('n', '<leader>oe', before.show_edits_in_telescope, {})

-- Show and look for previous edits in quickfix list
vim.keymap.set('n', '<leader>oq', before.show_edits_in_quickfix, {})

1.0.0

08 Mar 17:30
Compare
Choose a tag to compare

1.0.0 release of before.nvim 🎉

Features:

  • Tracking of edit locations
  • Navigating through edit history list
  • Edit history preview and navigation using quickfix and telescope

peeked