« get me outta code hell

Mouse drag support; pass detailed data to handlers - tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/util/ansi.js
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2019-07-18 22:46:00 -0300
committerFlorrie <towerofnix@gmail.com>2019-07-18 22:46:00 -0300
commit7bf0f9016cd195be20e76fbed8637b3b00a46725 (patch)
tree6ff7e2f829df0386120cb53cf3b7c37f4b748366 /util/ansi.js
parent9210cbf5986f4e7b796d39fe36d81aeab1992ae3 (diff)
Mouse drag support; pass detailed data to handlers
...for mouse events. Contains cursor position, modifier keys pressed,
etc.
Diffstat (limited to 'util/ansi.js')
-rw-r--r--util/ansi.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/ansi.js b/util/ansi.js
index f30e6ff..d58684f 100644
--- a/util/ansi.js
+++ b/util/ansi.js
@@ -107,11 +107,11 @@ const ansi = {
   },
 
   startTrackingMouse() {
-    return `${ESC}[?1000h`
+    return `${ESC}[?1002h`
   },
 
   stopTrackingMouse() {
-    return `${ESC}[?1000l`
+    return `${ESC}[?1002l`
   },
 
   requestCursorPosition() {