summaryrefslogtreecommitdiff
path: root/mut/neovim/lua
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2024-10-25 13:54:14 +0000
committerMike Vink <59492084+ivi-vink@users.noreply.github.com>2024-10-25 13:54:14 +0000
commit33e45ed710d478e01db665d4355e9f4b51ecc3c0 (patch)
treea20b777d66849ce49da5d21b79ee80cf6aabb64b /mut/neovim/lua
parenta137fb0f1b16287f73100212f0f1980523fcac18 (diff)
fixup
Diffstat (limited to 'mut/neovim/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