2016-07-06 37 views
0

我有一個日誌文件,其中有很多@字符用vim 7.4.160在centos上查看。但不管catcat -A都不顯示這些字符。在vim的日誌文件中看到的那些「@」字符是什麼?

那些@字符是在一些空行開始(這實際上是沒有真正的線,因爲Vim不會給他們的行號。)當我用鑰匙jk在它們之間移動,光標會就像那些線不在那裏一樣。

我懷疑它是否存在某個文件洞,或vim的排版方式。

[INFO 2016-07-05 18:26:08 xxxx] xxx 
@ 
@ 
@ 
[INFO 2016-07-05 18:26:08 xxxx] xxx 

回答

1

:help window-contents

If the last line in a window doesn't fit, Vim will indicate this with a '@' in 
the first column of the last lines in the window, like this: 

    +-----------------------+ 
    |first line    | 
    |second line   | 
    |@      | 
    |@      | 
    +-----------------------+ 

Thus the '@' lines indicate that there is a line that doesn't fit in the 
window. 

你可以用:help 'display'玩,如果你不希望這些@秒。

0

這些字符表明有屏幕下方的文件中更多的內容。

相關問題