-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in NextMethod() : generic function not specified #298
Comments
Edit: I previously posted a message that said I wasn't able to reproduce it, but I had neglected to update R6 to 2.6.0. I am able to reproduce this in RStudio. But the problem doesn't happen in R in the terminal. |
Thanks! |
@wch I'm not sure if this is related, but it is strange to me that it occurred recently and also with Here some more info:
Btw, I'm using Air. |
@vladimirobucina I think I'm able to reproduce the problem: with Positron and R6 2.6.1, tab-completion doesn't seem to work. Can you file a new issue for this? Reproducible example: library(R6)
AC <- R6Class("AC",
public = list(
x = 1
)
)
a <- AC$new()
# Press <tab> below
a$ |
After the update to
R6
2.6.0 I'm seeing this error a lot in the Rstudio console. Using the example from hereNow type the following and press any key. Each key creates a new
Error in NextMethod() : generic function not specified
Saw this in Rstudio on Windows
R 4.1.2
, but also on Rstudio (2024.12.0 Build 467) and R 4.4.2 withopenxlsx2
(JanMarvin/openxlsx2#1268)Is there any way to stop this?
The text was updated successfully, but these errors were encountered: