vim สามารถแสดงอักขระ ASCII เท่านั้นและถือว่าไบต์อื่นเป็นข้อมูลไบนารีได้หรือไม่


13

ฉันรู้อยู่แล้วว่าvim -bขึ้นอยู่กับสถานที่ที่ใช้มันจะแสดงอักขระหลายไบต์ (เช่น UTF-8) เป็นตัวอักษรเดียว

ฉันvimจะขอให้แสดงเฉพาะอักขระที่พิมพ์ได้ของ ASCII และจัดการกับส่วนที่เหลือเป็นข้อมูลไบนารีไม่ว่าจะเป็นชุดอักขระหรือไม่

คำตอบ:


18

เมื่อใช้vim -bงานจะแสดงอักขระสูงทั้งหมดเป็น<xx>:

set encoding=latin1
set isprint=
set display+=uhex

การเข้ารหัสไบต์เดียวใด ๆ จะทำงานได้ vim ใช้ ASCII สำหรับ chars ที่ต่ำกว่าทั้งหมดและมีการเข้ารหัสแบบฮาร์ดให้พิมพ์ได้ การตั้งค่าisprintว่างเปล่าจะทำเครื่องหมายทุกอย่างอื่นว่าไม่ใช่พิมพ์ การตั้งค่าuhexจะแสดงผลเป็นเลขฐานสิบหก

นี่คือวิธีที่หน้าจอเปลี่ยนหลังจากแต่ละคำสั่ง:

ก่อน หลังจากตั้งค่าการเข้ารหัส หลังจากตั้งค่า isprint หลังจากตั้งค่า uhex


ตัวเลือกเหล่านี้ไม่ได้ขึ้นอยู่กับ-bที่เพิ่งจะตั้งค่าตัวเลือกอื่น ๆ :help edit-binaryไม่กี่ดู ฉันไม่เห็นความแตกต่างในวิธีที่ไบต์ที่ไม่สามารถพิมพ์ได้แสดงให้เห็น (มันแสดง NUL โดยไม่-bปกติ) ฉันส่วนใหญ่ไม่ได้ใช้-bเพราะฉันใช้ตัวเลือกเหล่านี้เพื่อตรวจสอบการเข้ารหัสแปลก ๆ ในไฟล์ข้อความ
ปาสกาล

มีประโยชน์มากฉันจะใช้มันเมื่อวางจาก Word เป็นข้อความ คำสั่งเหล่านั้นสามารถใส่ลงในบรรทัดเดียว:set encoding=latin1|set isprint=|set display+=uhex
Philip Kearns

1

ดูเหมือนว่าสิ่งที่คุณกำลังมองหา เคล็ดลับนี้จากvimวิกิพีเดียชื่อ: บังคับ UTF-8 เป็นกลุ่มที่จะอ่าน Latin1 เป็น Latin1

$ vim -c "e ++enc=latin1" file.txt

นอกจากนี้จากvim's :helpคุณสามารถทำเช่นนี้เพื่อดูรายละเอียดเพิ่มเติมเกี่ยวกับการเข้ารหัส

:help enc

ตัดตอนมาจาก :help enc

'encoding' 'enc'        string (default: "latin1" or value from $LANG)
                        global
                        {only available when compiled with the +multi_byte
                        feature}
                        {not in Vi}
    Sets the character encoding used inside Vim.  It applies to text in
    the buffers, registers, Strings in expressions, text stored in the
    viminfo file, etc.  It sets the kind of characters which Vim can work
    with.  See encoding-names for the possible values.

    NOTE: Changing this option will not change the encoding of the
    existing text in Vim.  It may cause non-ASCII text to become invalid.
    It should normally be kept at its default value, or set when Vim
    starts up.  See multibyte.  To reload the menus see :menutrans.

    This option cannot be set from a modeline.  It would most likely
    corrupt the text.

    NOTE: For GTK+ 2 it is highly recommended to set 'encoding' to
    "utf-8".  Although care has been taken to allow different values of
    'encoding', "utf-8" is the natural choice for the environment and
    avoids unnecessary conversion overhead.  "utf-8" has not been made
    the default to prevent different behavior of the GUI and terminal
    versions, and to avoid changing the encoding of newly created files
    without your knowledge (in case 'fileencodings' is empty).
    ...
    ...

3
ค่อนข้างดี แต่ฉันต้องการ " vimแสดงเฉพาะอักขระที่พิมพ์ได้ของ ASCII" และโซลูชันของคุณใช้ชุดอักขระ latin1 (นั่นคือ ISO-8859-1, ชุดอักขระ ASCII) ซึ่งจะแสดงอักขระเช่นéที่ฉัน ' d <e9>ค่อนข้างชอบที่จะแสดงเป็น
Totor
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.