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
Commit message (
Collapse
)
Author
Age
Files
Lines
*
Bugfix to POSITION reporting - swap line<=>col
Paul LeoNerd Evans
2012-04-25
2
-3
/
+3
|
*
Have demo.c request cursor position on '?'; print position reports and mouse ↵
Paul LeoNerd Evans
2012-04-25
1
-3
/
+21
|
|
|
|
nicer
*
Many small manpage markup fixes
Paul LeoNerd Evans
2012-04-25
6
-21
/
+43
|
*
Bump VERSION to 0.15
Paul LeoNerd Evans
2012-04-25
1
-3
/
+3
|
*
Ensure that key->type field is properly set for all mouse encoding protocols
Paul LeoNerd Evans
2012-04-24
2
-0
/
+18
|
*
Documentation on new TERMKEY_TYPE_POSITION events
Paul LeoNerd Evans
2012-04-24
2
-0
/
+31
|
*
Also handle CSI R; position report replies to CSI 6n
Paul LeoNerd Evans
2012-04-24
4
-1
/
+76
|
*
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 ↵
Paul LeoNerd Evans
2012-04-24
3
-20
/
+10
|
|
|
|
u handling
*
Created abstract accessors for getting/setting key event line/col counts
Paul LeoNerd Evans
2012-04-24
3
-27
/
+25
|
*
Added some notes about what mouse protocols are supported
Paul LeoNerd Evans
2012-04-12
1
-0
/
+4
|
*
Also pass 'index' argument to man-to-html.pl
Paul LeoNerd Evans
2012-04-12
1
-1
/
+1
|
*
Note the limited range of mouse line/column number
Paul LeoNerd Evans
2012-04-12
1
-1
/
+1
|
*
termkey_interpret_mouse takes const key, does not set modifiers, as that's ↵
Paul LeoNerd Evans
2012-04-12
1
-3
/
+1
|
|
|
|
already done
*
Use spare bits in code.mouse[3] to store bigger mouse positions
Paul LeoNerd Evans
2012-04-12
3
-21
/
+34
|
*
Allow setting mouse encoding protocol from demo
Paul LeoNerd Evans
2012-04-12
1
-2
/
+11
|
*
Recognise SGR-style mouse encoding
Paul LeoNerd Evans
2012-04-12
3
-3
/
+61
|
*
Recognise rxvt-style mouse encoding
Paul LeoNerd Evans
2012-04-12
2
-1
/
+49
|
*
Extract modifiers for mouse events at peekkey time
Paul LeoNerd Evans
2012-04-05
2
-5
/
+28
|
*
Added a unit test for mouse report events
Paul LeoNerd Evans
2012-04-05
1
-0
/
+61
|
*
Created a demo to show libtermkey in a GLib-based program
Paul LeoNerd Evans
2012-04-01
3
-1
/
+79
|
*
Fix manpage bug in termkey_start.3
Paul LeoNerd Evans
2012-03-26
1
-1
/
+1
|
*
Bump VERSION to 0.14
Paul LeoNerd Evans
2012-03-26
1
-3
/
+3
|
*
Need to ship man/also in distribution tarball
Paul LeoNerd Evans
2012-03-26
1
-1
/
+1
|
*
Also pack the unit tests into the dist tarball, and allow building them ↵
Paul LeoNerd Evans
2012-03-26
1
-13
/
+20
|
|
|
|
in-target
*
Avoid the underscore in struct _TermKey
Paul LeoNerd Evans
2012-03-26
2
-2
/
+2
|
*
Consistency updates to Makefile to make it more like libvterm's
Paul LeoNerd Evans
2012-03-12
1
-15
/
+27
|
*
Added documentation for termkey_{start,stop}, termkey_is_started
Paul LeoNerd Evans
2012-03-08
5
-3
/
+33
|
*
Use man/also for manpage aliasing rather than duplicating the list ↵
Paul LeoNerd Evans
2012-03-08
1
-7
/
+3
|
|
|
|
(incorrectly) in the Makefile
*
Have getkey/waitkey return RES_ERROR/EINVAL if stopped
Paul LeoNerd Evans
2012-03-08
2
-1
/
+12
|
*
Added a termkey_is_started() accessor; unit test it a bit
Paul LeoNerd Evans
2012-03-08
3
-1
/
+16
|
*
Move the terminal start/stop code into their own functions, exported ↵
Paul LeoNerd Evans
2012-03-08
3
-47
/
+81
|
|
|
|
(undocumented for now)
*
Also link to termkey_{get,set}_buffer_size(3) from termkey(7)
Paul LeoNerd Evans
2012-03-08
1
-1
/
+1
|
*
Bump VERSION to 0.13
Paul LeoNerd Evans
2012-03-08
1
-3
/
+3
|
*
Optionally build against libncursesw if unibilium isn't present, before ↵
Paul LeoNerd Evans
2012-03-08
1
-0
/
+3
|
|
|
|
falling back on plain libncurses
*
Added manpage for termkey_{get,set}_buffer_size
Paul LeoNerd Evans
2012-02-13
5
-0
/
+27
|
*
Added (undocumented) termkey_set_buffer_size()
Paul LeoNerd Evans
2012-02-13
3
-0
/
+45
|
*
Added (undocumented) termkey_get_buffer_size()
Paul LeoNerd Evans
2012-02-13
3
-1
/
+10
|
*
Document the errors set by termkey_new(), use errno rather than fprintf() to ↵
Paul LeoNerd Evans
2012-01-29
3
-6
/
+12
|
|
|
|
stderr
*
Symlink manpage for termkey_new_abstract
Paul LeoNerd Evans
2012-01-26
2
-0
/
+2
|
*
Use termkey_new_abstract() in unit tests
Paul LeoNerd Evans
2012-01-26
9
-20
/
+10
|
*
Created termkey_new_abstract()
Paul LeoNerd Evans
2012-01-26
3
-1
/
+23
|
*
Move initialisation logic out of termkey_new into a static function
Paul LeoNerd Evans
2012-01-26
1
-39
/
+46
|
*
Use termkey_set_flags() in constructor rather than copypasted logic
Paul LeoNerd Evans
2012-01-26
1
-5
/
+3
|
*
Split termkey_new() into alloc and initialise phases
Paul LeoNerd Evans
2012-01-26
1
-30
/
+41
|
*
Also mark termkey.c's modnames as static
Paul LeoNerd Evans
2012-01-22
1
-1
/
+1
|
*
Mark new driver-csi internal variables as static so they don't result in ↵
Paul LeoNerd Evans
2012-01-22
1
-5
/
+5
|
|
|
|
linkable symbols
*
Fix 'make dist' target for new man/ subdir
Paul LeoNerd Evans
2012-01-22
1
-1
/
+3
|
*
Bump VERSION to 0.12
Paul LeoNerd Evans
2012-01-22
1
-3
/
+3
|
*
Also mkdir MAN7DIR at install time
Paul LeoNerd Evans
2012-01-22
1
-0
/
+1
|
[next]