package notty
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
On This Page
  
  
  Declaring terminals
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      notty-0.2.3.tbz
    
    
        
    
  
  
  
    
  
  
    
  
        sha256=74659fb14073db4438989891ab24f24bef81aa497dac16d9a67f9a1c9c200824
    
    
  sha512=6e21d44fe39f3d80884b87635bebae55cb2b931ef74f9184ba4d74cc3e51cb0b3e976c3b6dc61d377288504e8bfabe21acdc1069eacb30df1fbf6686b80f7c6b
    
    
  doc/notty.lwt/Notty_lwt/Term/index.html
Module Notty_lwt.TermSource
Terminal IO with concurrency.
For more info, see Notty_unix.Term.
Construction and destruction
Source
val create : 
  ?dispose:bool ->
  ?nosig:bool ->
  ?mouse:bool ->
  ?bpaste:bool ->
  ?input:Lwt_unix.file_descr ->
  ?output:Lwt_unix.file_descr ->
  unit ->
  tcreate ~dispose ~nosig ~mouse ~input ~output () creates a new terminal.
Note ~dispose arranges for the terminal to be disposed of at the end of the Lwt main loop, and not at process exit.
Commands
Events
Properties
Window size change notifications
Creating a terminal will install a SIGWINCH handler. The handler should not be replaced directly. This API allows the user to monitor deliveries of the signal.
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  On This Page