This repository was archived by the owner on Dec 20, 2024. It is now read-only.
File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ first 16 bytes, since that's implicit.
116
116
117
117
----
118
118
119
+ ### List of messages
120
+
119
121
#### Protocol Version ` 0 `
120
122
121
123
Request:
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ impl AnsiCode {
227
227
228
228
fn enable ( self ) {
229
229
let ( pair, attr) = self . attr_pair ( ) ;
230
- if let Some ( ( id, _ , _ ) ) = pair {
230
+ if let Some ( PairValues { id, .. } ) = pair {
231
231
attron ( COLOR_PAIR ( id) ) ;
232
232
}
233
233
if let Some ( attr) = attr {
@@ -240,7 +240,7 @@ impl AnsiCode {
240
240
if let Some ( attr) = attr {
241
241
attroff ( attr) ;
242
242
}
243
- if let Some ( ( id, _ , _ ) ) = pair {
243
+ if let Some ( PairValues { id, .. } ) = pair {
244
244
attroff ( COLOR_PAIR ( id) ) ;
245
245
}
246
246
}
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ makes available:
46
46
* ` send ` : Send a command to the server.
47
47
* ` status ` : View the current status of the server.
48
48
* ` timings ` : Generate a Timings report and get a URL to view it.
49
+ * ` console ` : Attach to an emulated console for the server.
49
50
* Commands for running the server:
50
51
* ` run ` : Run the server in the foreground (not as a daemon, really only useful for testing)
51
52
* ` start ` : Start the server in the background as a daemon
You can’t perform that action at this time.
0 commit comments