equal
deleted
inserted
replaced
461 object Dynamic_Output |
461 object Dynamic_Output |
462 { |
462 { |
463 def apply(body: String): JSON.T = |
463 def apply(body: String): JSON.T = |
464 Notification("PIDE/dynamic_output", Map("body" -> body)) |
464 Notification("PIDE/dynamic_output", Map("body" -> body)) |
465 } |
465 } |
|
466 |
|
467 |
|
468 /* dynamic preview */ |
|
469 |
|
470 object Dynamic_Preview |
|
471 { |
|
472 def apply(content: String): JSON.T = |
|
473 Notification("PIDE/dynamic_preview", Map("content" -> content)) |
|
474 } |
466 } |
475 } |