We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0f7ba commit 5821233Copy full SHA for 5821233
curtsies/window.py
@@ -310,6 +310,10 @@ def get_cursor_position(self) -> Tuple[int, int]:
310
"""Returns the terminal (row, column) of the cursor
311
312
0-indexed, like blessed cursor positions"""
313
+
314
+ if self._use_blessed:
315
+ return self.t.get_location()
316
317
# TODO would this be cleaner as a parameter?
318
in_stream = self.in_stream
319
0 commit comments