package zed
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=83e2ad88e6fa19f8245b843d1ddab77719faaf1e74ff6f87ee68e9a2ba8f9538
md5=878123c9114bf3c0bd18a19fb1af73cd
CHANGES.md.html
2.0.3 (2019-08-09)
Zed_string
exception Invalid of string * string
raised when an invalid Zed_char sequence is encountednext_ofs : t -> int -> int
returns the offset of the next zchar int
prev_ofs : t -> int -> int
returns the offset of the prev zchar int
2.0.2 (2019-06-21)
Zed_utf8: fix an ofs-stepping bug in function
unsafe_extract_prev
2.0.1 (2019-06-04)
Zed_char: add an
indv_combining
option to the transforming functions(of_uChars, zChars_of_uChars, of_utf8
) to determine whether to extract individual combining marks from the parameter (#18)Zed_char: clarify some documentation comments (#18)
2.0 (2019-05-17)
Additions
module Zed_char
module Zed_string
Zed_cursor
column_display: Zed_cursor.t -> int React.signal
get_column: Zed_cursor.t -> int
coordinates_display: Zed_cursor.t -> (int * int) React.signal
get_coordinates: Zed_cursor.t -> int * int
Zed_edit
regexp_word_core: Zed_re.Core.t
regexp_word_raw: Zed_re.raw.t
match_by_regexp_core
match_by_regexp_raw
Breaking
Zed_rope
Zed_rope.empty is a function now
Other functions in this module take
Zed_char.t
orZed_string.t
as arguemnts instead ofUChar.t
orZed_utf8.t
module Zipper is divided into two modules, Zip and Zip_raw, to navigate over a rope by Zed_char.t or UChar.t, respectively
module Text is divided into three modules, Text, Text_core, Text_raw, to manager Zed_rope by Zed_char.t, the core UChar.t of a
Zed_char.t
and rawUChar.t
, respectively
Zed_re is therefore divided into two modules: Core and Raw
Zed_cursor: the type
changes
is defined as a structure and has two more fields:added_width
andremoved_width
General
README: Add Travis badge (Kevin Ji, #11)
Add travis config (Anurag Soni, #10)
Switch to dune (Anurag Soni, #9)
1.6 (2017-11-05)
safe-string compatibility (#8)
1.5 (2017-04-26)
Switch to jbuilder (Rudi Gringberg, #4)
Make
{delete_,kill_,}{next,prev}_word
consistent near the start/end of the buffer (Fabian (github use copy), #5)
1.4 (2015-01-07)
added
Zed_edit.get_line
added
Zed_line.line_{length,stop}
fix a bug in cursor updates
fix some invalid use of react
1.3 (2014-04-21)
Zed_rope
fixes:rev_map
: fix recursionenforce evaluation order in
map
&rev_map
1.2 (2012-07-30)
add escaping functions
add
Zed_utf8.next_error
1.1 (2011-08-06)
add the
{delete,kill}-{prev,next}-word
actions and functionsadd
Zed_edit.Insert(ch)
add
Zed_edit.replace
raise an exception when editing a read-only part of a text
disable the move function
add support for undo
add
Zed_input
to ease writing key bindersadd
Zed_macro
to ease writing macro systemfix
Zed_rope.Zip.sub
add
Zed_edit.new_clipboard
add
Zed_utf8.add