aboutsummaryrefslogtreecommitdiff
path: root/lua/cmake-explorer/notification.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/cmake-explorer/notification.lua')
-rw-r--r--lua/cmake-explorer/notification.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/lua/cmake-explorer/notification.lua b/lua/cmake-explorer/notification.lua
deleted file mode 100644
index 0029241..0000000
--- a/lua/cmake-explorer/notification.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-local has_notify, notify = pcall(require, "notify")
-
-local Notification = {}
-
-function Notification.notify(msg, lvl, opts)
- opts = opts or {}
- if has_notify then
- opts.hide_from_history = true
- opts.title = "CMake Explorer"
- return notify(msg, lvl, opts)
- end
-end
-
-return Notification