MacOS X: कैसे एक काम "iTerm में इस फ़ोल्डर खोलें" शॉर्टकट है?


12

मुझे लगता है कि शीर्षक बताता है कि मैं क्या करना चाहता हूं। मैं फाइंडर के भीतर एक शॉर्टकट या यहां तक ​​कि एक बटन चाहता हूं जो एक नया iTerm टैब फायर करता है और स्थान को खोजक में खुले स्थान पर बदल देता है। किसी प्रकार का open .उलटा। :-)

धन्यवाद, मैलैक्स

जवाबों:


5

यहां एक ओपन टर्मिनल है AppleScript जिसे आप इसके बजाय iTerm को कॉल करने के लिए संशोधित करने में सक्षम होना चाहिए। यह MacOSXHints पोस्ट सहायक के रूप में अच्छी तरह से होना चाहिए।

(मैं अपने मैक पर नहीं हूं अन्यथा मैं इसका परीक्षण करूंगा।)


10

मेरे लिए यह एपस्क्रिप्ट काम करता है:

-- script was opened by click in toolbar
on run
tell application "Finder"
    try
        set currFolder to (folder of the front window as string)
    on error
        set currFolder to (path to desktop folder as string)
    end try
end tell
CD_to(currFolder, false)
end run

-- script run by draging file/folder to icon
on open (theList)
set newWindow to false
repeat with thePath in theList
    set thePath to thePath as string
    if not (thePath ends with ":") then
        set x to the offset of ":" in (the reverse of every character of thePath) as string
        set thePath to (characters 1 thru -(x) of thePath) as string
    end if
    CD_to(thePath, newWindow)
    set newWindow to true -- create window for any other files/folders
end repeat
return
end open

-- cd to the desired directory in iterm
on CD_to(theDir, newWindow)
set theDir to quoted form of POSIX path of theDir as string
tell application "iTerm"
    activate
    delay 1
    -- talk to the first terminal 
    try
        set myterm to the first terminal
    on error
        set myterm to (make new terminal)
    end try

    tell myterm
        try
            -- launch a default shell in a new tab in the same terminal 
            launch session "Default Session"
        on error
            display dialog "There was an error creating a new tab in iTerm." buttons {"OK"}
        end try
        tell the last session
            try
                -- cd to the finder window
                write text "cd " & theDir
            on error
                display dialog "There was an error cding to the finder window." buttons {"OK"}
            end try
        end tell
    end tell
end tell
end CD_to

1
मुझे लगता है कि यह स्वीकृत उत्तर होना चाहिए।
दिलेलिप्सिवा

8

इस पृष्ठ पर अन्य उत्तरों का उपयोग करके मैंने एक ऐप बनाया है जिसे खोजक कार्य पट्टी में खींचा जा सकता है।

आप इसे यहां से डाउनलोड कर सकते हैं: https://github.com/rc1/iTermTo


1
बहुत ही उत्तम कार्य! अच्छी तरह से काम। यह स्वीकृत उत्तर होना चाहिए।
आरसीई

1
मैं सहमत हूँ - पूरी तरह से काम करने लगता है। डाउनलोड ज़िप। एप्लिकेशन फ़ोल्डर को एप्लिकेशन इंस्टॉल करने के लिए खींचें। आसान शॉर्टकट के लिए खोजक टूलबार पर एप्लिकेशन को खींचें।
जस्टिंगार्डन

3

यह संस्करण 3.1.0 के रूप में iTerm2 में बनाया गया है।

कार्यक्षमता का उपयोग करने के लिए:
फाइंडर में एक फ़ोल्डर पर क्लिक करें -> सेवाएं -> नई iTerm2 विंडो यहां

नोट: Servicesसबमेनू राइट-क्लिक मेनू के बहुत नीचे है।

संदर्भ
इस लिंक पर क्लिक करें पुराने संस्करण दिखाएं , फिर iTerm2 3.1.0 के तहत शो चेंगलॉग पर क्लिक करें और सेवाओं के लिए देखें , आपको यह मिलेगा:

खोजक सेवाओं के लिए समर्थन जोड़ें। आप खोजकर्ता को उस स्थान पर iTerm2 लॉन्च करने के लिए राइट क्लिक कर सकते हैं।


2

टर्मिनल (या iTerm, X11) में वर्तमान निर्देशिका को खोलने के लिए https://github.com/jbtule/cdto "खोजक टूलबार ऐप cdtoपर होस्ट की गई परियोजना पर एक नज़र डालें । इस ऐप को डिज़ाइन किया गया है (इसके आइकन सहित)। खोजक विंडो का टूलबार। "


लेकिन यह दो iTerms विंडो खोलता है जो थोड़ी देर के बाद अत्यधिक कष्टप्रद है।
माइक लिस्चके

1

पूर्णता के लिए, इस प्रश्न को खोजने से पहले कि मेरे लिए क्या काम किया गया था:

  • एक AppleScript- केवल समाधान के लिए new_tab.sh (bash स्क्रिप्ट द्वारा जारी AppleScript) को अनुकूलित किया ।
  • फिर से Applescript Editor-> File-> Export-> File Format = .app
  • .appखोजक के टूलबार पर खींचें और गिराएं।

यह एक खोजक टूलबार बटन का परिणाम है जो नई iTerm2टैब में वर्तमान निर्देशिका को खोलता है । XtraFinder इस तरह के एक बटन प्रदान करता है, लेकिन यह नई खिड़कियां खोलता है।

सेवाओं का उपयोग करने वाला एक समान समाधान यहां पाया जा सकता है , जो और भी अधिक संबंधित AppleScript समाधानों के लिए लिंक करता है:

मेरा अनुकूलित AppleScript है:

try
    tell application "iTerm2"
        tell the last terminal
            launch session "Default Session"
            tell the last session
                tell i term application "Finder"
                    set cur_dir to (the target of the front Finder window) as string
                end tell
                set cur_dir to POSIX path of cur_dir
                write text "cd " & cur_dir
            end tell
        end tell
     end tell
end try

यह समाधान इस बटन-संबंधित थ्रेड में टिप्पणी की गई थी ।

ऊपर दिए गए iTermTo उत्तर के लिए धन्यवाद ।


1

मुझे लगता है कि यह इसलिए है क्योंकि iTerm के इंटर्नल्स बदल गए हैं, लेकिन मेरे लिए कोई भी समाधान काम नहीं किया। निम्नलिखित कोड क्या था:

tell application "Finder"
    set cur_dir to POSIX path of ((the target of the front Finder window) as string)
end tell
tell application "iTerm"
    tell (create window with default profile)
        write current session text "cd " & quoted form of cur_dir
    end tell
end tell

या एक खोजक सेवा के रूप में ऑटोमेटर का उपयोग करना:

on run {input, parameters}
    tell application "Finder"
        set cur_dir to POSIX path of (input as string)
    end tell
    tell application "iTerm"
        tell (create window with default profile)
            write current session text "cd " & quoted form of cur_dir
        end tell
    end tell
end run

0

ITerm के साथ:

Iterm प्राथमिकताएं और प्रोफाइल टैब के तहत, जनरल उपटैब पर जाएं, वर्किंग डायरेक्टरी को "पिछले सत्र की डायरेक्टरी को पुनः उपयोग करें" पर सेट करें।


0

यहाँ एक सरल स्क्रिप्ट है जो हमेशा एक नया टैब खोलता है (जैसे बुलजीत की स्क्रिप्ट):

try
    tell application "Finder"
        if number of Finder windows is 0 then
            set p to POSIX path of (desktop as alias)
        else
            set p to POSIX path of (target of Finder window 1 as alias)
        end if
    end tell
    tell application "iTerm"
        reopen
        tell current terminal
            tell (launch session "Default Session")
                write text "cd " & quoted form of p
            end tell
        end tell
        activate
    end tell
end try

यदि आप चाहते हैं कि स्क्रिप्ट मौजूदा टैब का पुन: उपयोग करे, तो tell current terminalब्लॉक को इस तरह बदलें :

tell current session of current terminal
    write text "cd " & quoted form of p
end tell

लेकिन यह काम नहीं करेगा अगर उदाहरण के लिए वर्तमान सत्र व्यस्त है या कम या विम प्रक्रिया चल रही है।

एक कोशिश ब्लॉक में स्क्रिप्ट लपेटकर यह चुपचाप विफल रहता है। reopenएक नई टर्मिनल विंडो खोलता है यदि कोई दृश्यमान विंडो नहीं है या केवल उदाहरण के लिए प्राथमिकताएं विंडो खुली है। खोजक के पास एक insertion locationसंपत्ति भी है , जो आमतौर पर target of Finder window 1या डेस्कटॉप है। लेकिन 10.7 में एक बग है और बाद में जहां यह अक्सर सामने की खिड़की की तुलना में किसी अन्य विंडो को संदर्भित करता है।

बुलजीत की स्क्रिप्ट के साथ कुछ संभावित समस्याएं:

  • इसमें एक सेकंड की देरी है। मुझे नहीं पता कि यह किसी चीज़ के लिए ज़रूरी है, लेकिन जब मुझे इस स्क्रिप्ट का परीक्षण करना था, तो मुझे किसी देरी की ज़रूरत नहीं थी।
  • यदि आपने iTerm को पूर्ण स्क्रीन में नई विंडो खोलने के लिए सेट किया है और कोई खुली विंडो नहीं हैं, तो यह एक गैर-पूर्णस्क्रीन विंडो खोलता है।
  • यह खोजक को रास्ता बताता है front window( window 1), जो एक सूचना खिड़की या एक प्राथमिकता वाली खिड़की हो सकती है। Finder window 1हमेशा एक फ़ाइल ब्राउज़र विंडो होगी।
  • यह निर्देशिका को बदल देता है /यदि सामने का फाइंडर विंडो एक दृश्य प्रदर्शित कर रहा है जिसमें कोई रास्ता नहीं है (जैसे नेटवर्क दृश्य)।

मैं सिर्फ इस तरह एक समारोह का उपयोग कर पसंद करते हैं:

cf () {
  c "$(osascript -e 'tell application "Finder"
    POSIX path of (target of Finder window 1 as alias
  end tell)' 2> /dev/null)"
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.