क्या केवल ASCII वर्ण प्रदर्शित कर सकते हैं, और अन्य बाइट्स को द्विआधारी डेटा के रूप में मान सकते हैं?


13

मैं पहले से ही जानता हूं vim -b, हालांकि, उपयोग किए गए स्थान के आधार पर, यह एकल अक्षरों के रूप में मल्टी-बाइट वर्ण (जैसे यूटीएफ -8) प्रदर्शित करता है।

मैं vimकेवल ASCII प्रिंट करने योग्य वर्णों को प्रदर्शित करने के लिए कैसे कह सकता हूं , और बाकी को द्विआधारी डेटा के रूप में मान सकता हूं , कोई फर्क नहीं पड़ता?

जवाबों:


18

उपयोग करते समय vim -b, यह सभी उच्च वर्णों को प्रदर्शित करता है <xx>:

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

कोई भी एकल-बाइट एन्कोडिंग काम करेगा, विम सभी निचले वर्णों के लिए ASCII का उपयोग करता है और उन्हें मुद्रण योग्य के रूप में हार्ड-कोडित किया जाता है। स्थापना isprintखाली करने के लिए प्रिंट न हो सकने के रूप में सब कुछ का प्रतीक होगा। सेटिंग uhexउन्हें हेक्साडेसिमल के रूप में प्रदर्शित करेगी।

यहां बताया गया है कि प्रत्येक कमांड के बाद डिस्प्ले कैसे बदलती है:

इससे पहले एन्कोडिंग स्थापित करने के बाद छाप लगाने के बाद uhex की स्थापना के बाद


ये विकल्प निर्भर नहीं करते हैं -b, यह सिर्फ कुछ अन्य विकल्प सेट करेगा, देखें :help edit-binary। मुझे इस बात में कोई अंतर नहीं दिखता है कि गैर-प्रिंट किए गए बाइट्स कैसे दिखाए जाते हैं (यह -bआमतौर पर एनयूएल दिखाता है )। मैं ज्यादातर उपयोग नहीं कर रहा हूं -b, क्योंकि मैं इन विकल्पों का उपयोग पाठ फ़ाइलों में अजीब एन्कोडिंग पर जांच करने के लिए करता हूं।
पास्कल

बहुत उपयोगी है, मैं इसका उपयोग वर्ड से टेक्स्ट में पेस्ट करते समय करूंगा। उन आदेशों को भी एक ही लाइन पर रखा जा सकता है:set encoding=latin1|set isprint=|set display+=uhex
फिलिप कर्न्स

1

ऐसा लगता है कि आप क्या देख रहे हैं। vimविकी शीर्षक से यह टिप : UTF-8 Vim को लैटिन 1 के रूप में लैटिन 1 पढ़ने के लिए मजबूर करना

$ 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केवल एएससीआईआई प्रिंट करने योग्य पात्रों को प्रदर्शित करना चाहता हूं ", और आपका समाधान लैटिन 1 चारसेट का उपयोग करता है (जो कि आईएसओ 8859-1, एएससीआईआई का एक सुपरसेट है), यह इस प्रकार वर्ण प्रदर्शित करेगा जैसे कि é'' घ के रूप में प्रदर्शित होना चाहते हैं <e9>
टोटन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.