मुझे वर्तमान फ़ाइल का नाम और विस्तार कैसे मिलेगा?


24

क्या विम्सस्क्रिप्ट का उपयोग करके किसी फ़ाइल का नाम और विस्तार प्राप्त करने का कोई तरीका है?

यदि ऐसा है तो मुझे नाम और विस्तार अलग से चाहिए।


"एक पंक्ति"? कौन सी फाइल? वर्तमान बफर में एक? खोज पथ में कहीं एक फ़ाइल?
मुरु

वह फ़ाइल जो उपयोगकर्ता `vim <फ़ाइल नाम> के माध्यम से
खोलती है


मुझे पूरा रास्ता नहीं चाहिए। मुझे केवल फ़ाइल का नाम और विस्तार चाहिए। पथ नहीं मैं भी इस का उपयोग vimscript में करना चाहता हूं।
iProgram

हाँ, दोनों उत्तर वास्तव में जुड़े हुए प्रश्न में हैं (विशेष रूप से, चार्ल्सएल का उत्तर) ...
मार्टिन टूरनोइज

जवाबों:


27

से :he filename-modifiers:

    :t      Tail of the file name (last component of the name).  Must
            precede any :r or :e.
    :r      Root of the file name (the last extension removed).  When
            there is only an extension (file name that starts with '.',
            e.g., ".vimrc"), it is not removed.  Can be repeated to remove
            several extensions (last one first).

    :e      Extension of the file name.  Only makes sense when used alone.
            When there is no extension the result is empty.
            When there is only an extension (file name that starts with
            '.'), the result is empty.  Can be repeated to include more
            extensions.  If there are not enough extensions (but at least
            one) as much as possible are included.
Examples, when the file name is "src/version.c", current dir
"/home/mool/vim":
  :p                    /home/mool/vim/src/version.c
  :t                                       version.c
  :t:r                                     version
  :e                                               c

आप expandइनका विस्तार करने और उनके मूल्यों को प्राप्त करने के लिए फ़ंक्शन का उपयोग कर सकते हैं :

:let b:baz=expand('%:e')

उदाहरण के लिए:

$ vim '+ exe ":normal i" . expand("%:t") . "^M" . expand("%:e")' +wqa foo.bar; cat foo.bar
foo.bar
bar

:t" अवश्य पूर्व में होना किसी भी: आर या: ई," अभी तक :e"केवल समझ में आता है जब अकेले इस्तेमाल किया"। उदाहरण के अनुसार, मैं उत्तरार्द्ध के साथ पक्ष लूंगा, लेकिन दिलचस्प यह है कि डॉक्स ने खुद का विरोध किया।
SnoringFrog

@SnoringFrog मेरा मानना ​​है कि इसका मतलब यह है कि आप ऐसा नहीं कर सकते हैं :e:t, लेकिन :t:eअनुमति है, अगर अर्थहीन है।
मूरू

ओह, मैं देख रहा हूं कि इसे कैसे पढ़ा जा सकता है। तब समझ में आता है।
SnoringFrog

10

यो उपयोग कर सकते हैं expand(), देख सकते हैं:h expand()

स्क्रिप्ट में आप फ़ाइल-नाम पाने के लिए ऐसा कर सकते हैं:

let file_name = expand('%:t:r')

एक्सटेंशन पाने के लिए आप कर सकते हैं:

let extension = expand('%:e')

expand()समारोह वाइल्डकार्ड और विशेष विस्तार कर सकते हैं प्रतीकों । यहां मैंने उपयोग किया है %जो वर्तमान फ़ाइल-नाम तक फैलता है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.