You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shinyAce is great! I'm working on an open source hybrid between a code editor and a BI tool for a package I'm planning to call ShinyBI. It is influenced a lot by radiant and exploratory.io. Screenshot below of the app.
I'm planning to pursue bringing some more rich functionality to shinyAce to closer mimic the experience of writing code in RStudio, most of which I believe can be found here. Has anyone tried doing this at all? Is there any big roadblocks preventing this that I could know about? Or am I missing something and this is already easily doable in shinyAce?
Examples of RStudio like functionality
# auto indenting pipes (shinyAce)
df <- iris %>%
mutate(...)
# auto indenting pipes (RStudio)
df <- iris %>%
mutate(...)
# function completion cursor in function (shinyAce)
mutate
# function completion cursor in function (RStudio)
mutate(`cursor here`)
# function args (shinyAce)
pivot_longer
# function args (RStudio)
pivot_longer(data = ...)
shinyAce is great! I'm working on an open source hybrid between a code editor and a BI tool for a package I'm planning to call ShinyBI. It is influenced a lot by radiant and exploratory.io. Screenshot below of the app.
I'm planning to pursue bringing some more rich functionality to shinyAce to closer mimic the experience of writing code in RStudio, most of which I believe can be found here. Has anyone tried doing this at all? Is there any big roadblocks preventing this that I could know about? Or am I missing something and this is already easily doable in shinyAce?
Examples of RStudio like functionality
I also posted something similar on posit community to see if anyone can point me in the right direction https://community.rstudio.com/t/enhancing-shinyace-to-be-more-like-rstudio-function-completion-function-args-auto-indenting-cursor-placements/179569
The text was updated successfully, but these errors were encountered: