text-zipper-0.7.1: A text editor zipper library

Safe HaskellNone
LanguageHaskell2010

Data.Text.Zipper

Contents

Description

This module provides a two-dimensional text zipper data structure. This structure represents a body of text and an editing cursor which can be moved throughout the text, along with a set of editing transformations.

Text zippers are generalized over the set of data types that might be used to store lists of characters (e.g., String, Text, etc.). As a result, the most general way to create a text zipper is to use mkZipper and provide all of the functions required to manipulate the underlying text data.

Implementations using Text and String are provided.

Synopsis

Documentation

data TextZipper a Source #

Instances

Eq a => Eq (TextZipper a) Source # 

Methods

(==) :: TextZipper a -> TextZipper a -> Bool #

(/=) :: TextZipper a -> TextZipper a -> Bool #

Show a => Show (TextZipper a) Source # 
NFData a => NFData (TextZipper a) Source # 

Methods

rnf :: TextZipper a -> () #

Construction and extraction

mkZipper Source #

Arguments

:: Monoid a 
=> (Char -> a)

A singleton constructor.

-> (Int -> a -> a)

drop.

-> (Int -> a -> a)

take.

-> (a -> Int)

length.

-> (a -> Char)

last.

-> (a -> a)

init.

-> (a -> Bool)

null.

-> (a -> [a])

lines.

-> [a]

The initial lines of text.

-> Maybe Int

Limit to this many lines of text (Nothing means no limit).

-> TextZipper a 

Create a zipper using a custom text storage type. Takes the initial text as well as all of the functions necessary to manipulate the underlying text values.

textZipper :: [Text] -> Maybe Int -> TextZipper Text Source #

Construct a zipper from Text values.

stringZipper :: [String] -> Maybe Int -> TextZipper String Source #

Construct a zipper from list values.

clearZipper :: Monoid a => TextZipper a -> TextZipper a Source #

Empty a zipper.

vectorZipper :: [Vector Char] -> Maybe Int -> TextZipper (Vector Char) Source #

Construct a zipper from vectors of characters.

getText :: Monoid a => TextZipper a -> [a] Source #

Get the text contents of the zipper.

currentLine :: Monoid a => TextZipper a -> a Source #

The line of text on which the zipper's cursor currently resides.

cursorPosition :: TextZipper a -> (Int, Int) Source #

Get the cursor position of the zipper; returns (row, col). row ranges from [0..num_rows-1] inclusive; col ranges from [0..length of current line] inclusive. Column values equal to line width indicate a cursor that is just past the end of a line of text.

lineLengths :: Monoid a => TextZipper a -> [Int] Source #

Return the lengths of the lines in the zipper.

getLineLimit :: TextZipper a -> Maybe Int Source #

Get the line limit, if any, for a zipper.

Navigation and editing functions

moveCursor :: Monoid a => (Int, Int) -> TextZipper a -> TextZipper a Source #

Move the cursor to the specified row and column. Invalid cursor positions will be ignored. Valid cursor positions range as described for cursorPosition.

insertChar :: Monoid a => Char -> TextZipper a -> TextZipper a Source #

Insert a character at the current cursor position. Move the cursor one position to the right.

insertMany :: Monoid a => a -> TextZipper a -> TextZipper a Source #

Insert many characters at the current cursor position. Move the cursor one position to the end of the inserted text.

breakLine :: Monoid a => TextZipper a -> TextZipper a Source #

Insert a line break at the current cursor position.

killToEOL :: Monoid a => TextZipper a -> TextZipper a Source #

Remove all text from the cursor position to the end of the current line. If the cursor is at the beginning of a line and the line is empty, the entire line will be removed.

killToBOL :: Monoid a => TextZipper a -> TextZipper a Source #

Remove all text from the cursor position to the beginning of the current line.

gotoEOL :: Monoid a => TextZipper a -> TextZipper a Source #

Move the cursor to the end of the current line.

gotoBOL :: Monoid a => TextZipper a -> TextZipper a Source #

Move the cursor to the beginning of the current line.

deletePrevChar :: (Eq a, Monoid a) => TextZipper a -> TextZipper a Source #

Delete the character preceding the cursor position, and move the cursor backwards by one character.

deleteChar :: Monoid a => TextZipper a -> TextZipper a Source #

Delete the character at the cursor position. Leaves the cursor position unchanged. If the cursor is at the end of a line of text, this combines the line with the line below.

moveRight :: Monoid a => TextZipper a -> TextZipper a Source #

Move the cursor right by one position. If the cursor is at the end of a line, the cursor is moved to the first position of the following line (if any).

moveLeft :: Monoid a => TextZipper a -> TextZipper a Source #

Move the cursor left by one position. If the cursor is at the beginning of a line, the cursor is moved to the last position of the preceding line (if any).

moveUp :: Monoid a => TextZipper a -> TextZipper a Source #

Move the cursor up by one row. If there no are rows above the current one, move to the first position of the current row. If the row above is shorter, move to the end of that row.

moveDown :: Monoid a => TextZipper a -> TextZipper a Source #

Move the cursor down by one row. If there are no rows below the current one, move to the last position of the current row. If the row below is shorter, move to the end of that row.