Basic units of text that are implemented by a Token and can be be used by a Cursor.
'bword': new RegExp('\\S+', 'g')
'char': new RegExp('[\\s\\S]', 'g')
'line': new RegExp('[^\\n]+', 'g')
'word': new RegExp('\\b[^\\s]+?\\b', 'g')