GitXplorerGitXplorer
p

writer

public
489 stars
27 forks
0 issues

Commits

List of commits on branch main.
Unverified
d0b3379b13199bc518188709e56efbee03817d49

Turn off alpha, turn on desynchronize for canvas measuring

ppacocoursey committed 3 years ago
Unverified
2c1efe0d9fe797bf7533cdbd4174df2e60663cda

Update readme

ppacocoursey committed 3 years ago
Unverified
a773ffc6cbeeee8fa148a6a9a41d764bb4ee61de

open source

ppacocoursey committed 3 years ago

README

The README file for this repository.

writer

Plain text editor from scratch, made for the web. Drag and drop files to open them.

Architecture

  • Buffer is an array of array of lines
  • Text is manually measured and wrapped with canvas
  • Lines are virtualized on scroll and drawn as divs
  • Cursor and selection are also divs
  • Word boundary operations are emulated with textarea
  • Styling through CSS variables

Future

  • B-tree buffer with height map
  • History system
  • Operational transform
  • Alternate canvas renderer with FreeType and Harfbuzz