From #1172 (comment)
Say you write dplyr::across() or library(dplyr)
We probably want Cmd+Click anywhere on dplyr::across() to goto-definition, that seems like it would be the most expected behavior from most users.
But some people may want an easy way to jump to package metadata about dplyr.
We could have a Code Action when the user's cursor is on dplyr of dplyr::across() or library(dplyr) that pops up a 💡 and gives them a few options, like:
- Open
DESCRIPTION
- Open
NAMESPACE
- Open package documentation (
"_PACKAGE")
From #1172 (comment)
Say you write
dplyr::across()orlibrary(dplyr)We probably want
Cmd+Clickanywhere ondplyr::across()to goto-definition, that seems like it would be the most expected behavior from most users.But some people may want an easy way to jump to package metadata about dplyr.
We could have a Code Action when the user's cursor is on
dplyrofdplyr::across()orlibrary(dplyr)that pops up a 💡 and gives them a few options, like:DESCRIPTIONNAMESPACE"_PACKAGE")