diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-31 15:12:02 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-04-07 15:30:27 +0200 |
commit | 5ecf3c9ae0bd28c498d6a2c7e56b6679d909c065 (patch) | |
tree | aca0ef590dfc37c227bdcc861807dc0023340b3f /lua/user/comment.lua | |
parent | 8f3501838060d37affac7025d1ea06450fa7de85 (diff) | |
download | vim-5ecf3c9ae0bd28c498d6a2c7e56b6679d909c065.zip vim-5ecf3c9ae0bd28c498d6a2c7e56b6679d909c065.tar.gz |
add init failed msg
Diffstat (limited to 'lua/user/comment.lua')
-rw-r--r-- | lua/user/comment.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/user/comment.lua b/lua/user/comment.lua index 7f8870f..7d36862 100644 --- a/lua/user/comment.lua +++ b/lua/user/comment.lua @@ -1,5 +1,6 @@ local status_ok, comment = pcall(require, "Comment") if not status_ok then + print "Comment init failed" return end |