Vim modelines

This modeline is a line in the 5 first of the 5 last of the file containing vim: followed by at least one space and a list of variable names with an optional value after = separated by space or :.

A typical Vim modeline looks like this:

/* vim: set noet ts=4 sw=4: */

Anjuta support only the following variables.

expandtab
et

Use spaces for indentation.

noexpandtab
noet

Use tabulation for indentation.

softtabstop
sts
tabstop
ts

Number of space characters corresponding to one tabulation character.

shiftwidth
sw

Number of space characters used to indent C code.