Skip to contents

Place escServer(i = input, o = output) call somewhere within your server definition. Respond to esc keypress with browser() Must provide names for objects provided with ... eg. foo = foo

Usage

escServer(id = "esc", i, o, ...)

Arguments

id

module namespace id "esc"

i

shiny input

o

shiny output

...

any other NAMED objects from main shiny process to pass to browser

Value

esckey module server

Examples

if (FALSE) { # \dontrun{
# Placed in app server function
escServer(i = input, o = output)
} # }