From e13c92ea4489293ef3feb7e3c58c81dc43a46837 Mon Sep 17 00:00:00 2001 From: Bryan Date: Tue, 17 Sep 2024 20:36:07 -0600 Subject: [PATCH] Change error message --- lua/cd-project/api.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/cd-project/api.lua b/lua/cd-project/api.lua index 39b8952..0b868a0 100644 --- a/lua/cd-project/api.lua +++ b/lua/cd-project/api.lua @@ -161,7 +161,7 @@ local function add_current_project(opts) if not project_dir then if opts.auto then - utils.log_error("Can't find project path of current file") + utils.log_error("Can't find project path of current file.\nProject not automatically created.") return end project_dir = vim.fn.getcwd()