2012-03-09 9 views
8

znalazłem Vimmish: http://dira.ro/2009/05/07/vimmish-vim-translatorCzy istnieje usługa online do tłumaczenia poleceń Vima na postać czytelną dla człowieka?

Narzędzie, które przekłada Vima sekwencje polecenie w postaci czytelnej dla człowieka:

Wejście:

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

wyjściowa:

    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 

To jest zaprogramowany z Ruby .

¿Czy istnieje jego wersja online lub coś podobnego?

+0

ładne narzędzie, wydaje się, że będzie łatwo stworzyć webapp z niego –

+2

niektóre narzędzia, które działa w drugą stronę wokół byłoby miło :) – Bernhard

+2

Używam jednego z tych przez cały czas. Lubię to nazywać "Google". :) –

Odpowiedz

Powiązane problemy