summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/git.lua
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2022-07-12 13:24:23 +0200
committerGitHub <noreply@github.com>2022-07-12 13:24:23 +0200
commit5f253751916664caa15d9d6de8325e796db72686 (patch)
tree7ea85ae09500d465b67275beda40d4639936b3be /lua/telescope/builtin/git.lua
parent7485b06d5854a8f3098dcbacc880f0a1107b3783 (diff)
chore: remove deprecated functions / messages (#2063)
Diffstat (limited to 'lua/telescope/builtin/git.lua')
-rw-r--r--lua/telescope/builtin/git.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/telescope/builtin/git.lua b/lua/telescope/builtin/git.lua
deleted file mode 100644
index e6da478..0000000
--- a/lua/telescope/builtin/git.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-local m = setmetatable({}, {
- __index = function(_, k)
- local utils = require "telescope.utils"
- utils.notify("builtin", {
- msg = string.format(
- 'You are using an internal interface. Do not use `require("telescope.builtin.git").%s`,'
- .. ' please use `require("telescope.builtin").git_%s`! We will remove this endpoint soon!',
- k,
- k
- ),
- level = "ERROR",
- })
- return require("telescope.builtin")["git_" .. k]
- end,
-})
-
-return m