We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In addition to copy to clipboard, would be convenient to have a modal window showing the code (ex generate_server.stack):
generate_server.stack)
Note:
eval(call("==", colname, "aaa"))
observeEvent(input$copy, { code <- generate_code(vals$stack) |> deparse() |> as.character() |> as.list() # Modal showModal( modalDialog( title = "Stack code", size = "l", shinyAce::aceEditor( outputId = session$ns("ace"), selectionId = "selection", value = styler::style_text(code, strict = TRUE), mode = "r", wordWrap = TRUE, readOnly = TRUE, placeholder = "Show a placeholder when the editor is empty ..." ) ) ) # Copy to clipboard session$sendCustomMessage( "blockr-copy-code", list( code = generate_code(vals$stack) |> deparse() |> as.character() |> as.list() ) ) })
We may not need shinyAce.
The text was updated successfully, but these errors were encountered:
DivadNojnarg
No branches or pull requests
In addition to copy to clipboard, would be convenient to have a modal window showing the code (ex
generate_server.stack)
:Note:
eval(call("==", colname, "aaa"))
.We may not need shinyAce.
The text was updated successfully, but these errors were encountered: