src/Tools/VSCode/src/protocol.scala
changeset 65977 c51b74be23b6
parent 65924 9140c9cce351
child 65979 c208fcf369b7
equal deleted inserted replaced
65976:1448d71fbd22 65977:c51b74be23b6
   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 }