about summary refs log tree commit diff stats
path: root/src/local/client.nim
Commit message (Collapse)AuthorAgeFilesLines
* pager: fix regressionbptato2023-11-211-14/+14
| | | | | pager.tty refers to infile, not outfile. rename to avoid further confusion
* Remove trailing spacesbptato2023-10-231-1/+1
|
* base64: reduce pointless re-coding using JSStringbptato2023-10-211-2/+3
| | | | | We now expose some functions from QuickJS to interact with JavaScript strings without re-encoding them into UTF-8.
* javascript: add TextEncoder, TextDecoderbptato2023-10-211-0/+2
|
* WindowAttributes: refactorbptato2023-10-191-1/+1
| | | | | | * rename module (window -> winattrs, to avoid conflict with env/window) * do not use result * remove unused cell_ratio
* Refactor Consolebptato2023-10-131-70/+96
| | | | | * merge dom.console & client.Console * move client-specific stuff out of Console (into callbacks when necessary)
* Add w3m-cgi-compat optionbptato2023-10-011-1/+2
|
* Add urimethodmap supportbptato2023-09-301-0/+1
| | | | yay
* pager: show character sequence inputs on status linebptato2023-09-261-23/+25
| | | | pretty useful I think
* client: write errors to browser console in evalActionbptato2023-09-251-3/+10
|
* client: clean up Client objectbptato2023-09-241-14/+5
| | | | | * remove unused attributes * make line a function
* client, timeout: simplifybptato2023-09-241-8/+8
| | | | | We don't use the generic feature of selectors, so just unify the client & buffer timeout types.
* Disable "toggle source" for the console bufferbptato2023-09-211-1/+2
|
* Fix compilation with --assertions:offbptato2023-09-151-2/+4
| | | | | Remove side effects from assert statements. The flag is not used currently, but let's not depend on that.
* bindings: fix JSInterruptHandler signaturebptato2023-09-151-1/+1
|
* move around more modulesbptato2023-09-141-8/+8
| | | | | | | | | | * ips -> io/ * loader related stuff -> loader/ * tempfile -> extern/ * buffer, forkserver -> server/ * lineedit, window -> display/ * cell -> types/ * opt -> types/
* move some modules to local/bptato2023-09-141-0/+643
makes a bit more sense than the previous arrangement
14bc7327f1a2a35cb533bcf18715305da44'>^
ca65478 ^
d7413ff ^
72707c2 ^


dba2306 ^
6b25d06 ^
e21d93b ^




61a1910 ^
e21d93b ^
e21d93b ^

















d4b7a9a ^
ca65478 ^
d6a6eca ^
e21d93b ^
bcaf6a7 ^
aaad7bf ^
bcaf6a7 ^
adaa28a ^
aaad7bf ^




61a1910 ^
bcaf6a7 ^
d6a6eca ^
e21d93b ^
d6a6eca ^
e21d93b ^





adaa28a ^
bcaf6a7 ^
adaa28a ^




adaa28a ^
d7413ff ^
292ccc4 ^
adaa28a ^


ca65478 ^
19da197 ^



19da197 ^
42fd392 ^
19da197 ^
5983c00 ^
19da197 ^


ca65478 ^
d7413ff ^

19da197 ^

19da197 ^



5983c00 ^
292ccc4 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132