diff options
author | Squibid <me@zacharyscheiman.com> | 2023-04-29 12:18:06 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-04-29 12:18:06 -0400 |
commit | d6460d53ed47a536f98fcb8a6e6d6cf4cb8d97c3 (patch) | |
tree | d571060679635e25a2008c6502b7f6d0e9766818 /lua/dep.lua | |
parent | 3c21d5b8e136f5fdfe62079521342f8b0ded0263 (diff) | |
download | dep-d6460d53ed47a536f98fcb8a6e6d6cf4cb8d97c3.tar.gz dep-d6460d53ed47a536f98fcb8a6e6d6cf4cb8d97c3.tar.bz2 dep-d6460d53ed47a536f98fcb8a6e6d6cf4cb8d97c3.zip |
notify user that this is a development version
Diffstat (limited to '')
-rw-r--r-- | lua/dep.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lua/dep.lua b/lua/dep.lua index 386e739..11802c8 100644 --- a/lua/dep.lua +++ b/lua/dep.lua @@ -638,9 +638,8 @@ local function print_list(cb) line = line + 1 end - vim.notify(string.format("Installed packages (%s):", #packages), 'info', { - title = 'Dep', - }) + print("!! Warning you are using the dev branch of dep, expect bugs") + print(string.format("Installed packages (%s):", #packages)) indent = 1 local loaded = {} |