本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
說明
登入
cacalabs
/
libcaca
镜像来自
https://github.com/cacalabs/libcaca.git
關注
1
收藏
0
複製
0
程式碼
問題
0
版本發佈
7
Wiki
活動
瀏覽代碼
* Add linebreaks to the ANSI exporter for better readability, and use
the save/load cursor position trick to ignore them.
tags/v0.99.beta14
Sam Hocevar
sam
18 年之前
父節點
5612b86ce6
當前提交
ca5c87ae1b
共有
1 個檔案被更改
,包括
5 行新增
和
1 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
cucul/export.c
+ 5
- 1
cucul/export.c
查看文件
@@ -319,7 +319,11 @@ static void export_ansi(cucul_canvas_t *cv, cucul_buffer_t *ex)
prevbg = bg;
}
if(cv->width != 80)
if(cv->width == 80)
{
cur += sprintf(cur, "\033[s\n\033[u");
}
else
{
cur += sprintf(cur, "\033[0m\r\n");
prevfg = -1;
Write
Preview
Loading…
取消
儲存