I try to edit NppToR quickkey.txt file to get some R commands that I use repeatedly when developing a package:
F12=detach(2, unload=TRUE)
^F12=install(upgrade="never")
+F12=load_all("./", reset=TRUE, export_all = TRUE)
but parsing seems to stop at equal sign. Only the following is pasted to R console when pressing the corresponding quick key:
detach(2, unload
install(upgrade
load_all("./", reset
Note that quickkeys.txt can be edited using NppToR settings (right click on NppToR icon in Windows Tray). By default, i t is located in %AppData%\Notepad++ .
Quick keys would be a very useful feature but many R commands requires specifying argument name (not always possible to use only order). Is there a work around?
I try to edit NppToR
quickkey.txtfile to get some R commands that I use repeatedly when developing a package:but parsing seems to stop at equal sign. Only the following is pasted to R console when pressing the corresponding quick key:
Note that
quickkeys.txtcan be edited using NppToR settings (right click on NppToR icon in Windows Tray). By default, i t is located in%AppData%\Notepad++.Quick keys would be a very useful feature but many R commands requires specifying argument name (not always possible to use only order). Is there a work around?