| autoFF {mvbutils} | R Documentation |
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.
autoFF(...) # but don't call it directly # Use it like this: addTaskCallback( autoFF)
... |
a placeholder that absorbs the arguments passed into autoFF by the callback mechanism |
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.
TRUE (for the benefit of callback handling) |
Mark Bravington
## Not run: ## Need to set up "fixr" first ## If you use "fixr", try putting this in your ".First" addTaskCallback( autoFF) ## End(Not run)