Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# This file makes the leo directory a package. 

2 

3# The function allows the following code to work:: 

4# 

5# import leo 

6# leo.run() 

7 

8def run(*args,**keys): 

9 import pdb ; pdb = pdb.set_trace # type: ignore[assignment] 

10 import leo.core.runLeo as runLeo 

11 runLeo.run(*args,**keys) 

12