Difference between revisions of "Package:Vim/Cheatsheet"

From Funtoo
Jump to navigation Jump to search
(Created page with "Deplacements ------------ {| {{table}} !command !meaning !description |- |w |word |move to next word |- |W |Word |move to the next word (broad sens) |- |b |begin |move to th...")
 
m (Reviewed display)
Line 2: Line 2:
------------
------------


{| {{table}}  
{{TableStart|striped=true}}
!command
<tr>
!meaning
  <th>command</th>
!description
  <th>meaning</th>
|-
  <th>description</th>
|w
</tr>
|word
<tr>
|move to next word
  <td>w</td>
|-
  <td>word</td>
|W
  <td>move to next word</td>
|Word
</tr>
|move to the next word (broad sens)
<tr>
|-
  <td>W</td>
|b
  <td>Word</td>
|begin
  <td>move to the next word (broad sens)</td>
|move to the previous word beginning
</tr>
|-
<tr>
|B
  <td>b</td>
|Begin
  <td>begin</td>
|move to the previous word beginning (broad sense)
  <td>move to the previous word beginning</td>
|-
</tr>
|e
<tr>
|end
  <td>B</td>
|move to the next word end
  <td>Begin</td>
|-
  <td>move to the previous word beginning (broad sense)</td>
|E
</tr>
|End
<tr>
|move to the next word end (broad sense)
  <td>e</td>
|-
  <td>end</td>
|<nowiki>{</nowiki>
  <td>move to the next word end</td>
|
</tr>
|move to the previous blank line
<tr>
|-
  <td>E</td>
|<nowiki>}</nowiki>
  <td>End</td>
|move to the next blank line
  <td>move to the next word end (broad sense)</td>
|-
</tr>
|f<char>
<tr>
|fetch
  <td><nowiki>{</nowiki></td>
|move to the next occurrence of the character <char>
  <td></td>
|-
  <td>move to the previous blank line</td>
|F<char>
</tr>
|Fetch
<tr>
|move to the previous occurrence of the character <char>
  <td><nowiki>}</nowiki></td>
|-
  <td></td>
|}
  <td>move to the next blank line</td>
</tr>
<tr>
  <td>f<char></td>
  <td>fetch</td>
  <td>move to the next occurrence of the character <char></td>
</tr>
<tr>
  <td>F<char></td>
  <td>Fetch</td>
  <td>move to the previous occurrence of the character <char></td>
</tr>
{{TableEnd}}

Revision as of 12:37, April 5, 2015

Deplacements


command meaning description
w word move to next word
W Word move to the next word (broad sens)
b begin move to the previous word beginning
B Begin move to the previous word beginning (broad sense)
e end move to the next word end
E End move to the next word end (broad sense)
{ move to the previous blank line
} move to the next blank line
f<char> fetch move to the next occurrence of the character <char>
F<char> Fetch move to the previous occurrence of the character <char>