I am trying to get r-autoyas to work on Emacs 23.3.1
I installed yasnippet and it works great on its own. For example: TAB after 'for' in C ++ mode automatically expands. Then I continued with r-autoyas. I followed the instructions given in the github repository, but could not get TAB to extend even the built-in functions in the R buffer.
If I type rnorm (and then press TAB, the minibuffer opens, which shows me the various arguments of the functions. Is this the default behavior? Or should it fill the default input arguments and let me change them to one?
I searched the Internet to find out if anyone else had this problem. One forum mentioned that it might be due to the autocomplete feature in Emacs.
I have the following lines in the init.el file that were specified in the instructions:
(requires "r-autoyas")
(add-hook 'ess-mode-hook' r-autoyas-ess-activate)
(add-hook 'ess-mode' yas / minor-mode-on)
source share