summaryrefslogtreecommitdiff
path: root/mut/neovim/lua/my/packages/cmp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mut/neovim/lua/my/packages/cmp.lua')
-rw-r--r--mut/neovim/lua/my/packages/cmp.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/mut/neovim/lua/my/packages/cmp.lua b/mut/neovim/lua/my/packages/cmp.lua
index 0c63170..c959244 100644
--- a/mut/neovim/lua/my/packages/cmp.lua
+++ b/mut/neovim/lua/my/packages/cmp.lua
@@ -24,7 +24,6 @@ function has_words_before()
local is_not_first_col = (not (col == 0))
local is_not_whitespace = (is_whitespace == nil)
local result = is_not_first_col and is_not_whitespace
- P("has_words_before: " .. tostring(result) .. ", because is_not_first_col and is_not_whitespace: " .. tostring(is_not_first_col) .. " and " .. tostring(is_not_whitespace) .. ", is_whitespace: '" .. tostring(is_whitespace) .. "'")
return result
end