Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Setting up ViM: Difference between revisions

From MoodleDocs
No edit summary
No edit summary
Line 4: Line 4:
to ensure you get powerful use out of vim with moodle development
to ensure you get powerful use out of vim with moodle development


== Old Progress Bar ==
== Indentation ==
Moodle [[Coding|Coding Guidelines]] state that indentation should be spaces of 4 spaces (not Tabs). Some .vimrc options will help you adhere to these guidelines with ease:
 
<pre>
" insert space characters whenever the tab key is presse
set expandtab
 
" insert 4 spaces characters when tab key is pressed
set tabstop=4
 
" insert 4 spaces wen autoindent indents
set shiftwidth=4
 
" automatically indent files
set autoindent
 
" Do smart indentation depending on code syntax (e.g. change after { }, keywords etc)
set smartindent
</pre>
 
== Syntax Highlighting ==
Recent versions of vim have robust syntax highlighting for php. In order to switch syntax highlighting on add the following to your .vimrc:
<pre>
<pre>
function print_progress($done, $total, $updatetime=5, $sleeptime=1, $donetext='')
" set syntax highliging on
syntax on
</pre>
</pre>
== OOP Progress Bar ==


Usage:
== Other Useful vimrc settings ==
<pre>
<pre>
set_time_limit(0);
" show a ruler with line number, % through file on status line
$pb = new progressbar('bar', 500);
set ruler
$pb->create();
" show line number
$num_tasks = 200; // the number of tasks to be completed.
set nu
for($cur_task = 0; $cur_task <= $num_tasks; $cur_task++)
" PHP syntax check
{
set makeprg=php\ -l\ %
    for ($i=0; $i<100000; $i++)
set errorformat=%m\ in\ %f\ on\ line\ %l
    {
 
        ;;;
    }
    $pb->update_adv($cur_task, $num_tasks, 'this is'. $cur_task . 'h');
}
?>
<hr/>
<?php
$pt = new progressbar('zbar', 900);
$pt->create();
$num_tasks = 200; // the number of tasks to be completed.
for($cur_task = 0; $cur_task <= $num_tasks; $cur_task++)
{
    for ($i=0; $i<100000; $i++)
    {
        ;;;
    }
    $pt->update_adv($cur_task, $num_tasks, 'this is'. $cur_task . 'h');
}
</pre>
</pre>
== Ctags ==
See the [[ctags|Ctags Article]] for details on how to setup ctags usage with moodle and vim

Revision as of 05:09, 22 May 2008

Setting up Vim for Moodle Development

There are many powerful features available in vim, here are a few tips to ensure you get powerful use out of vim with moodle development

Indentation

Moodle Coding Guidelines state that indentation should be spaces of 4 spaces (not Tabs). Some .vimrc options will help you adhere to these guidelines with ease:

" insert space characters whenever the tab key is presse
set expandtab

" insert 4 spaces characters when tab key is pressed
set tabstop=4

" insert 4 spaces wen autoindent indents
set shiftwidth=4

" automatically indent files
set autoindent

" Do smart indentation depending on code syntax (e.g. change after { }, keywords etc)
set smartindent

Syntax Highlighting

Recent versions of vim have robust syntax highlighting for php. In order to switch syntax highlighting on add the following to your .vimrc:

" set syntax highliging on
syntax on

Other Useful vimrc settings

" show a ruler with line number, % through file on status line
set ruler
" show line number
set nu
" PHP syntax check
set makeprg=php\ -l\ %
set errorformat=%m\ in\ %f\ on\ line\ %l

Ctags

See the Ctags Article for details on how to setup ctags usage with moodle and vim