-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(editing-support): Add telescope-undo.nvim (#400)
* feat(editing-support): Add telescope-undo.nvim * Update lua/astrocommunity/editing-support/telescope-undo-nvim/init.lua Co-authored-by: Micah Halter <[email protected]> --------- Co-authored-by: Micah Halter <[email protected]>
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
lua/astrocommunity/editing-support/telescope-undo-nvim/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
5 changes: 5 additions & 0 deletions
5
lua/astrocommunity/editing-support/telescope-undo-nvim/init.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
} |
bc8c98e
There was a problem hiding this comment.
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 ?
bc8c98e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Sacro !
bc8c98e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed here: c7b79c1