diff options
| -rw-r--r-- | mut/neovim/lua/my/packages/cmp.lua | 1 |
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 |
