Skip to content

Commit

Permalink
fix: remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesimpson36 committed May 18, 2024
1 parent abe9f15 commit b386765
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/whereami/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function M.whereami()
if currentCursorWord ~= lastKnownWord then
path = path .. "." .. currentCursorWord
end
print(path)
-- print(path)
end

function M.readtext(node)
Expand Down Expand Up @@ -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
Expand All @@ -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()
Expand Down

0 comments on commit b386765

Please sign in to comment.