autoFF {mvbutils}R Documentation

Callback function for automatic updates of edited functions.

Description

autoFF should not be called directly. It can be installed via addTaskCallback( autoFF), after which it will be invoked after every successful top-level command (i.e. things you type). It automatically updates any functions being edited via fixr.

Usage

autoFF(...) # but don't call it directly
# Use it like this: addTaskCallback( autoFF)

Arguments

... a placeholder that absorbs the arguments passed into autoFF by the callback mechanism

Details

autoFF just calls FF. Just typing <ENTER> isn't enough to trigger autoFF; 0<ENTER> will do, though. To use autoFF, include the USAGE call in your .First.

Value

TRUE (for the benefit of callback handling)

Author(s)

Mark Bravington

See Also

addTaskCallback, fixr

Examples

## Not run: 
## Need to set up "fixr" first
## If you use "fixr", try putting this in your ".First"
addTaskCallback( autoFF)
## End(Not run)

[Package mvbutils version 2.2.0 Index]