Never trust voting machines!

In case you ever did (or trusted computers in general) you should watch this video (from YouTube)!

Take your bounty!

There are still bountys left for Anjuta. For example Fixing the project wizards shouldn’t really be that difficult and does not even require any coding.

Go on, ask on the ML, file a bug about it and earn the money!

Getting cool auto-indent in vim

Usually, I think there are better ways to write code today but often vim is simply useful because you are on an ssh connection or in a virtual environment or whatever.

Anyway, to get the IMHO quite cool auto-indent feature when pressing
“Tab” like emacs does, simply put this in your .vimrc:


set cindent
set smartindent
set autoindent
set expandtab
set tabstop=2
set shiftwidth=2
set cinkeys=0{,0},:,0#,!,!^F

Of course you can read more about the vim indenting feature in the documentation. Of course, I think most of you will know that already, so this entry is more a reminder for me.

[EDIT] uws remindend me, that the first three lines were missing. Seems the default on my system already included them. Thanks!