Skip to content

Commit

Permalink
feat(editing-support): Add telescope-undo.nvim (#400)
Browse files Browse the repository at this point in the history
* feat(editing-support): Add telescope-undo.nvim

* Update lua/astrocommunity/editing-support/telescope-undo-nvim/init.lua

Co-authored-by: Micah Halter <micah@mehalter.com>

---------

Co-authored-by: Micah Halter <micah@mehalter.com>
  • Loading branch information
Uzaaft and mehalter authored Jul 10, 2023
1 parent 168a450 commit bc8c98e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# telescope-undo.nvim

A telescope extension to view and search your undo tree 🌴


**Repository:** <https://github.com/debugloop/telescope-undo.nvim>

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = { "nvim-telescope/telescope-undo.nvim" },
opts = function() require("telescope").load_extension "undo" end,
}

3 comments on commit bc8c98e

@Sacro
Copy link
Contributor

@Sacro Sacro commented on bc8c98e Jul 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The url is wrong, shouldn't it be https://github.com/debugloop/telescope-undo.nvim ?

@mehalter
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @Sacro !

@mehalter
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed here: c7b79c1

Please sign in to comment.