jxxcarlson / elm-text-editor

A prototype of a pure Elm text editor, forked from work of Sydney Nemzer.

Home Page:https://jxxcarlson.github.io/app/editor/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrap unbreakable lines (somehow)

jxxcarlson opened this issue · comments

Need to not mess up coordination with line numbers

Fixed this by adding

style "white-space" "pre-wrap"

to the attributes of Editor.View.line.

Note that this adds to the existing out-of-sync problem for line numbers when there are long
lines (Issue #29).