2016-12-25 81 views
0

我檢查,你可以突出顯示代碼pygmentize,如:shell:如何用代碼突出顯示分頁文件?

pygmentize -g mycodefile 

,但對於大文件,我想分頁文件就像lessmore的能力,但是當我嘗試:

pygmentize -g mycodefile | less 

輸出是不正確的,例如:

ESC[34mfromESC[39;49;00m ESC[04mESC[36mmodule 

我怎麼能分頁的Fi在代碼突出顯示殼?

回答

2

嘗試

pygmentize -g mycodefile | less -R 

所以less示出了ANSI顏色序列。

+0

太好了,就是這樣。謝謝 – eLRuLL

相關問題