Commit Graph

1380 Commits

Author SHA1 Message Date
Qi Xiao
26006a03f4 Parse the for form correctly. 2016-02-14 19:18:10 +01:00
Qi Xiao
6e1090b887 Implement control structures except for for. 2016-02-14 19:13:12 +01:00
Qi Xiao
0afe57b179 Parse G3 arrow keys. 2016-02-14 18:31:36 +01:00
Qi Xiao
4b3d18442a Use outer product semantics for indexing. 2016-02-14 18:13:53 +01:00
Qi Xiao
b9a2693e57 edit: Only write bufListing when necessary. 2016-02-14 17:52:06 +01:00
Qi Xiao
097ecfe6f6 eval: Factor out an outerProduct; remove some code. 2016-02-14 17:46:25 +01:00
Qi Xiao
a1abcdff28 Disable mouse tracking for now. 2016-02-14 15:35:32 +01:00
Qi Xiao
09c91f2628 edit: Break mode-changing sequences apart. 2016-02-14 15:35:07 +01:00
Qi Xiao
0e981ee6de Preliminary parsing of control structures. 2016-02-14 15:29:00 +01:00
Qi Xiao
fe2b07e936 Add a history listing mode. 2016-02-14 07:52:31 +00:00
Qi Xiao
d377d89dcb Fix logger prefixes. 2016-02-13 21:40:54 +01:00
Qi Xiao
4ed010ab7d Edit: Update the render algorithm.
The old erase sequence is restored and explained in the comment. Some
unncessary sequences are suppressed.
2016-02-13 21:38:33 +01:00
Qi Xiao
96e52579a4 Add an "-exec" builtin. 2016-02-13 21:24:46 +01:00
Qi Xiao
e3826f42ae Require go>=1.5, remove drone.io badge. 2016-02-13 21:14:38 +01:00
Qi Xiao
725d1d48c8 Fix last commit. 2016-02-13 21:06:35 +01:00
Qi Xiao
84ea0384c5 Fix -log ''. 2016-02-13 21:06:16 +01:00
Qi Xiao
8e728ef076 Allow setting log file at runtime. 2016-02-13 21:05:35 +01:00
Qi Xiao
9483c60f19 edit: Simplify the erase sequence. 2016-02-13 20:54:39 +01:00
Qi Xiao
fee18f2543 edit: Use %+v to print mouse event. 2016-02-13 20:37:21 +01:00
Qi Xiao
089d4ad79c edit: read "normal" mouse event as well. 2016-02-13 20:37:02 +01:00
Qi Xiao
874855e967 edit: fix addTip. 2016-02-13 20:35:06 +01:00
Qi Xiao
3c718a9bff edit: Adjust reader logic to deal with CSI starter. 2016-02-13 20:19:14 +01:00
Qi Xiao
26c4eba04c Initialize currentSeq properly. 2016-02-13 19:43:49 +01:00
Qi Xiao
1dd89b8fe6 edit: Support multi-line tips.
The line-cutting strategy has also been refined.
2016-02-13 19:40:43 +01:00
Qi Xiao
55e3f4b029 pushTip -> addTip; make it nicer to use. 2016-02-13 19:27:21 +01:00
Qi Xiao
c08ae1ea54 edit: More small refactor. 2016-02-13 19:21:29 +01:00
Qi Xiao
4586199219 edit: Small refactor. 2016-02-13 19:17:20 +01:00
Qi Xiao
011f4dcaa2 Fix select-history-next. 2016-02-13 16:45:16 +01:00
Qi Xiao
2be8cef135 Fix compilation. 2016-02-13 16:42:08 +01:00
Qi Xiao
0785b4a847 Use pushTip for mouse event. 2016-02-13 16:41:25 +01:00
Qi Xiao
2c97375636 Consider bufNoti when calculating the height of bufListing. 2016-02-13 16:40:02 +01:00
Qi Xiao
213e43ee1b Implement notification.
This fixes #122.
2016-02-13 16:35:16 +01:00
Qi Xiao
ac0c7b4561 Merge pull request #123 from zhsj/clean-sql
Clean up SQL-related code.
2016-02-13 15:35:01 +01:00
Shengjing Zhu
abbbc3f6e3 clean up sql code 2016-02-13 22:30:48 +08:00
Qi Xiao
d7cbcffdbf Remove per-session history.
This fixes #116.
2016-02-13 15:12:19 +01:00
Qi Xiao
149433ae9b store: Factor out a transaction helper. 2016-02-13 12:49:27 +01:00
Qi Xiao
4ca023cd4d store: Close Rows in hasColumn.
Not closing the Rows will cause SQLite3 to lock the database and block all
other clients.
2016-02-13 12:37:31 +01:00
Qi Xiao
bf4264ea7f Fix failed test in store. 2016-02-13 01:08:59 +01:00
Qi Xiao
90ab0ee6c2 Implement lastAmongDup in the session history too.
This fully fixes #116.
2016-02-13 01:02:13 +01:00
Qi Xiao
b7d473b92e edit: history -> historyState 2016-02-13 00:58:33 +01:00
Qi Xiao
939bd0e505 Only select unique histories from the storage.
This addresses #116.
2016-02-13 00:51:03 +01:00
Qi Xiao
32150672fc store: Fix the use of transactions and a broken test. 2016-02-13 00:44:14 +01:00
Qi Xiao
56490fcd31 Support overriding the database file. 2016-02-13 00:35:33 +01:00
Qi Xiao
f454cfb386 store: Add a lastAmongDup column to the cmd table. 2016-02-13 00:21:46 +01:00
Qi Xiao
2468aece8d store: createTable -> initTable 2016-02-12 21:37:14 +01:00
Qi Xiao
c6bcb714c1 edit: Account for multi-width runes in delta drawing.
This fixes #117.
2016-02-12 20:30:10 +01:00
Qi Xiao
1e51776176 edit: Use a fixed timeout for runes in escape sequences. 2016-02-12 20:11:56 +01:00
Qi Xiao
7da398faef Fix parsing of unmodified function keys. 2016-02-12 19:52:11 +01:00
Qi Xiao
e1f8f4b675 Read mouse event.
This fixes #107. Now we can use elvish on touch screens! :D
2016-02-12 19:46:44 +01:00
Qi Xiao
7205edeb61 edit: Redesign the interface of reader. 2016-02-12 19:13:16 +01:00