Sublime Text QuickRef

By Victor Wheeler
Version 0.1

10-May-2025 16:15: V.Wheeler — Created

Note

This project is under active development.

Contents:

Indices and Tables

TODOs

Todo

Keyboard Editing

(The original entry is located in E:\Vics Documents\References\Sublime_Text\quickref\src\editing.rst, line 254.)

Todo

write Macros section

(The original entry is located in E:\Vics Documents\References\Sublime_Text\quickref\src\editing.rst, line 638.)

Todo

Mouse Features details.

(The original entry is located in E:\Vics Documents\References\Sublime_Text\quickref\src\editing.rst, line 663.)

Todo

fill in

(The original entry is located in E:\Vics Documents\References\Sublime_Text\quickref\src\markers_and_bookmarks.rst, line 18.)

Todo

fill in

(The original entry is located in E:\Vics Documents\References\Sublime_Text\quickref\src\markers_and_bookmarks.rst, line 25.)

Todo

Viewport, and its relationship to these View functions:

  • viewport_position(self) -> Vector:

    “”” :returns: The offset of the viewport in layout coordinates. “””

  • set_viewport_position(self, xy: Vector, animate=True):

    “”” Scrolls the viewport to the given layout position. “””

  • viewport_extent(self) -> Vector:

    “”” :returns: The width and height of the viewport. “””

  • layout_extent(self) -> Vector:

    “”” :returns: The width and height of the layout. “””

  • text_to_layout(self, tp: Point) -> Vector:

    “”” Convert a text point to a layout position. “””

  • text_to_window(self, tp: Point) -> Vector:

    “”” Convert a text point to a window position. “””

  • layout_to_text(self, xy: Vector) -> Point:

    “”” Convert a layout position to a text point. “””

  • layout_to_window(self, xy: Vector) -> Vector:

    “”” Convert a layout position to a window position. “””

  • window_to_layout(self, xy: Vector) -> Vector:

    “”” Convert a window position to a layout position. “””

  • window_to_text(self, xy: Vector) -> Point:

    “”” Convert a window position to a text point. “””

  • line_height(self) -> DIP:

    “”” :returns: The light height used in the layout. “””

(The original entry is located in E:\Vics Documents\References\Sublime_Text\quickref\src\introduction.rst, line 461.)