mirror of
https://github.com/amix/vimrc
synced 2025-07-08 01:25:00 +08:00
add various usefull plugins from vim.org and sourfeforge
This commit is contained in:
@ -0,0 +1,69 @@
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.do-while ==
|
||||
do {
|
||||
<SPLIT>} while ( <CURSOR> ); /* ----- end do-while ----- */
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.for ==
|
||||
for ( <CURSOR>; ; )
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.for-block ==
|
||||
for ( <CURSOR>; ; ) {
|
||||
<SPLIT>}
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.if ==
|
||||
if ( <CURSOR> )
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.if-block ==
|
||||
if ( <CURSOR> ) {
|
||||
<SPLIT><-IF PART->
|
||||
}
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.if-else ==
|
||||
if ( <CURSOR> )
|
||||
<SPLIT>else
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.if-block-else ==
|
||||
if ( <CURSOR> ) {
|
||||
<SPLIT><-IF PART->
|
||||
}
|
||||
else {
|
||||
<-ELSE PART->
|
||||
}
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.else-block ==
|
||||
else {
|
||||
<CURSOR><SPLIT>
|
||||
}
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.while ==
|
||||
while ( <CURSOR> )
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.while-block ==
|
||||
while ( <CURSOR> ) {
|
||||
<SPLIT>}
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.switch ==
|
||||
switch ( <CURSOR> ) {
|
||||
case <-LABEL->:
|
||||
<SPLIT>break;
|
||||
|
||||
case <-LABEL->:
|
||||
break;
|
||||
|
||||
case <-LABEL->:
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
} /* ----- end switch ----- */
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.case ==
|
||||
case <CURSOR>:
|
||||
break;
|
||||
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
== statements.block ==
|
||||
{
|
||||
<CURSOR><SPLIT>
|
||||
}
|
||||
$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
Reference in New Issue
Block a user