index
:
termo
master
term-string
origin/master
Terminal key input library
Přemysl Eric Janouch <p@janouch.name>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
driver-csi.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Also handle CSI R; position report replies to CSI 6n
Paul LeoNerd Evans
2012-04-24
1
-0
/
+17
*
Neater CSI driver; dispatch command handlers from an array
Paul LeoNerd Evans
2012-04-24
1
-80
/
+150
*
Always load the CSI driver because it contains cross-terminal mouse and CSI u...
Paul LeoNerd Evans
2012-04-24
1
-17
/
+0
*
Created abstract accessors for getting/setting key event line/col counts
Paul LeoNerd Evans
2012-04-24
1
-22
/
+2
*
Use spare bits in code.mouse[3] to store bigger mouse positions
Paul LeoNerd Evans
2012-04-12
1
-17
/
+22
*
Recognise SGR-style mouse encoding
Paul LeoNerd Evans
2012-04-12
1
-2
/
+31
*
Recognise rxvt-style mouse encoding
Paul LeoNerd Evans
2012-04-12
1
-0
/
+20
*
Document the errors set by termkey_new(), use errno rather than fprintf() to ...
Paul LeoNerd Evans
2012-01-29
1
-3
/
+0
*
Mark new driver-csi internal variables as static so they don't result in link...
Paul LeoNerd Evans
2012-01-22
1
-5
/
+5
*
Fix another printf() %c char
Paul LeoNerd Evans
2012-01-20
1
-1
/
+1
*
Since CSI key info is the same for every CSI driver, just store one static co...
Paul LeoNerd Evans
2012-01-20
1
-194
/
+151
*
fprintf() %c wants char, not unsigned char
Paul LeoNerd Evans
2012-01-20
1
-4
/
+4
*
Also handle new 'fixterms' spec CSI codepoint;modifiers u encoding
Paul LeoNerd Evans
2011-05-09
1
-0
/
+6
*
Implement mouse catching also in CSI driver, in case xterm-alike terminal wit...
Paul LeoNerd Evans
2009-11-26
1
-0
/
+16
*
Renamed all type names to CamelCaseNames for visual distinctness, separate fr...
Paul LeoNerd Evans
2009-07-15
1
-22
/
+22
*
Complete change of driver internals - peek and return size but don't eat byte...
Paul LeoNerd Evans
2008-12-10
1
-12
/
+12
*
Make CSI driver's debugging output messages on unrecognised sequences conditi...
Paul LeoNerd Evans
2008-11-12
1
-6
/
+12
*
CSI driver shouldn't eat sequences it doesn't understand; leave them for anot...
Paul LeoNerd Evans
2008-11-12
1
-13
/
+17
*
Bugfix to 'unknown CSI' case in CSI driver - neater output message to avoid u...
Paul LeoNerd Evans
2008-11-12
1
-2
/
+16
*
CSI driver should also load when TERM=screen because of screen's stupid way o...
Paul LeoNerd Evans
2008-11-09
1
-6
/
+13
*
Driver getkey() can return TERMKEY_RES_NONE which attempts getkey_simple() af...
Paul LeoNerd Evans
2008-11-09
1
-1
/
+1
*
Drivers have names
Paul LeoNerd Evans
2008-11-08
1
-0
/
+2
*
Pass driver_info as explicit void* parameter into driver methods
Paul LeoNerd Evans
2008-11-08
1
-4
/
+4
*
Pass 'csi' value to static helper functions in driver-csi
Paul LeoNerd Evans
2008-11-08
1
-10
/
+8
*
Reuse common Esc-prefix code in getkey_simple() from CSI driver; avoids code ...
Paul LeoNerd Evans
2008-11-03
1
-44
/
+5
*
Pass the 'force' value through to getkey_simple()
Paul LeoNerd Evans
2008-11-02
1
-1
/
+1
*
'int' might not be wide enough to hold any Unicode codepoint; use 'long'
Paul LeoNerd Evans
2008-10-10
1
-3
/
+3
*
Added some TODO notes about handling realloc() failures
Paul LeoNerd Evans
2008-10-09
1
-0
/
+1
*
Better free() tracking in constructor failure cases
Paul LeoNerd Evans
2008-10-09
1
-0
/
+9
*
Pass 'term' string into new_driver virtual method; have drivers sensitive to ...
Paul LeoNerd Evans
2008-10-09
1
-1
/
+11
*
Moved all of the keynames out from driver-csi into termkey; where they belong
Paul LeoNerd Evans
2008-10-08
1
-34
/
+34
*
Pass an explicit 'force' parameter into driver's getkey rather than relying o...
Paul LeoNerd Evans
2008-10-08
1
-10
/
+10
*
Moved single byte and UTF-8 sequence recombiner out of driver-csi.c back into...
Paul LeoNerd Evans
2008-10-08
1
-92
/
+2
*
Moved all of the C0 registration and 'do_codepoint' logic out of driver-csi b...
Paul LeoNerd Evans
2008-10-08
1
-146
/
+10
*
s/eatbytes/eat_bytes/ - nicer API name
Paul LeoNerd Evans
2008-10-07
1
-13
/
+13
*
Moved 'eatbytes' back into core code, put a code ptr in the termkey struct as...
Paul LeoNerd Evans
2008-10-07
1
-32
/
+13
*
Moved CSI key registration code to be private to CSI driver
Paul LeoNerd Evans
2008-10-06
1
-24
/
+98
*
Use vtable in driver to indirect calls to the CSI driver
Paul LeoNerd Evans
2008-10-06
1
-3
/
+10
*
Moved CSI-related code out of termkey.c into new driver-csi.c
Paul LeoNerd Evans
2008-10-06
1
-0
/
+582