From b38676596f9e24e5641a2c852d42a84ead67da2b Mon Sep 17 00:00:00 2001 From: Jesse Simpson Date: Sat, 18 May 2024 13:28:29 -0400 Subject: [PATCH] fix: remove print statements --- lua/whereami/init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/whereami/init.lua b/lua/whereami/init.lua index 1051c07..1534e39 100644 --- a/lua/whereami/init.lua +++ b/lua/whereami/init.lua @@ -25,7 +25,7 @@ function M.whereami() if currentCursorWord ~= lastKnownWord then path = path .. "." .. currentCursorWord end - print(path) + -- print(path) end function M.readtext(node) @@ -92,7 +92,7 @@ function M.deepestNode(pathArray, node) if text == pathArray[1] then local size = M.arraySize(pathArray) local subArray = M.subArray(pathArray, 2, size) - print(text) + -- print(text) return M.deepestNode(subArray, innerInnerChild) end end @@ -110,7 +110,7 @@ function M.jumptopath(path) local parentText = M.readtext(parent) local type = parent:type() if type == "block_mapping_pair" then - print(parentText) + -- print(parentText) end lastParent = parent parent = parent:parent()