From ddf887e0f60778eb4b87d4ec535ce933e07c8a12 Mon Sep 17 00:00:00 2001 From: Artem Medeu Date: Mon, 16 Oct 2023 18:52:49 +0600 Subject: [PATCH] fix: remove print --- lua/nvim-paredit/api/motions.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/nvim-paredit/api/motions.lua b/lua/nvim-paredit/api/motions.lua index 13bcad4..9afc4df 100644 --- a/lua/nvim-paredit/api/motions.lua +++ b/lua/nvim-paredit/api/motions.lua @@ -140,7 +140,6 @@ function M._move_to_element(count, reversed, is_head, is_exclusive) cursor_pos = { next_pos[1] + 1, next_pos[2] - 1 + offset } end - print(is_exclusive, is_head, offset, reversed) vim.api.nvim_win_set_cursor(0, cursor_pos) end