AndresVargas

Hi!, my nickName is zodman, im a Computer science Engineering. love the FLOSS and FreeSoftware. Python ninja and php coder. On left my love Aisha and me.

Interest links
seen more



Powered by Django.

vim python support on foresight

im update few days ago the vim.. on fl:2-devel someone add the params for get the python support im only bake the changes but now i have vim with python powers....

vim

This because the vim version on conary repo not have support of it. So the rpathians what use ? emacs ? argh!!! ( i dont like)

this make the onmicomplete awesome. and with vim-addons( zodyrepo.rpath.org@rpl:devel ) can be a replace of any IDE.

Some python code what i learned today [Iterator]:

In [1]: a = ["a","b","c"]

In [2]: b = iter(a)

In [3]: b.next()
Out[3]: 'a'

In [4]: b.next()
Out[4]: 'b'

In [5]: b.next()
Out[5]: 'c'

In [6]: b.next()
---------------------------------------------------------------------------
StopIteration                             Traceback (most recent call last)

/home/zodman/<ipython console> in <module>()

StopIteration:

Im love python because sometimes not need explains for understand what doing ...

Python Foresight Tip
BACK