##// END OF EJS Templates
go to appropriate line when coming from another cell...
go to appropriate line when coming from another cell Sets the cursor on the last line of the cell when moved up from the top of the cell below, and sets the cursors to the first line when moving down from the bottom of a last line. Here, we retain the character that the cursor was on, so that users wishing to have up-down functionality like one document can still use this shortcut handler and simple adjust the at_top and at_bottom methods

File last commit:

r12513:6b68269f
r15834:869e697c
Show More
__init__.py
8 lines | 185 B | text/x-python | PythonLexer
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 from .base import PostProcessorBase
from .pdf import PDFPostProcessor
MinRK
protect against unavailable tornado in post_processors.init
r12513
# protect against unavailable tornado
try:
from .serve import ServePostProcessor
except ImportError:
pass