Variable: vera-intelligent-tab
vera-intelligent-tab is a customizable variable defined in
vera-mode.el.gz.
Value
t
Documentation
Non-nil means TAB does indentation, word completion and tab insertion.
That is, if preceding character is part of a word then complete word,
else if not at beginning of line then insert tab,
else if last command was a TAB or RET then dedent one step,
else indent current line.
If nil, TAB always indents current line.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vera-mode.el.gz
(defcustom vera-intelligent-tab t
"Non-nil means `TAB' does indentation, word completion and tab insertion.
That is, if preceding character is part of a word then complete word,
else if not at beginning of line then insert tab,
else if last command was a `TAB' or `RET' then dedent one step,
else indent current line.
If nil, TAB always indents current line."
:type 'boolean)