2012-03-09 11 views
8

मैं Vimmish पाया: http://dira.ro/2009/05/07/vimmish-vim-translatorक्या वीम कमांड को मानव पठनीय रूप में अनुवाद करने के लिए कोई ऑनलाइन सेवा है?

कि मानव पठनीय रूप में विम आदेश दृश्यों तब्दील एक उपकरण:

इनपुट:

iDon't know vim :(.<ESC>^2WBc2wbetter now<ESC><RIGHT>Da.<ESC>II can understan<ESC><RIGHT>~dE 

आउटपुट:

    i => insert before cursor: 
Don't know vim :(. => type Don't know vim :(. 
      <ESC> => go to normal mode 
       ^=> move to the begining of the line (not blank character) 
       2W => move to the begining of the next space-separated word, 2 times 
       B => move backwards one space-separated-word 
       c2w => change to the begining of the next word, 2 times 
     better now => type better now 
      <ESC> => go to normal mode 
      <RIGHT> => move one character to the right 
       D => delete the rest of the current line 
       a => append after cursor: 
       . => type . 
      <ESC> => go to normal mode 
       I => insert to the begining of the current line: 
    I can understan => type I can understan 
      <ESC> => go to normal mode 
      <RIGHT> => move one character to the right 
       ~ => change character case 
       dE => delete to the end of the next space-separated-word 

यह रूबी के साथ प्रोग्राम किया जाता ।

¿क्या इसका कोई ऑनलाइन संस्करण है, या कुछ समान है?

+0

अच्छा उपकरण प्राप्त करने के लिए https://evangeneer.net/vim2human/ करने के लिए एक विन कमान पोस्ट कर सकते हैं, लगता है यह कुछ उपकरण है जो अन्य तरीके से काम करता है से यह –

+2

webapp बनाने के लिए आसान हो जाएगा चारों ओर अच्छा होगा :) – Bernhard

+2

मैं उन सभी में से एक का उपयोग करता हूं। मैं इसे "Google" कहूंगा। :) –

उत्तर