Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
SilenZcience committed Jan 29, 2024
1 parent 053212d commit 0b4e959
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cat_win/util/editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,6 @@ def _render_scr(sub_s: str) -> None:
elif key == b'_key_enter':
self.search = sub_s if sub_s else self.search
f_len = len(self.window_content)
print(f_len, self.cpos.row)
if self.search in self.window_content[self.cpos.row][self.cpos.col+1:]:
self.cpos.col += \
self.window_content[self.cpos.row][self.cpos.col+1:].find(self.search)+1
Expand Down

0 comments on commit 0b4e959

Please sign in to comment.