Skip to content

Commit

Permalink
release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kandu committed Apr 14, 2020
1 parent 47185a0 commit e2a5ca8
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
0.1.0 (2020-04-14)
------------------

initial release

13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# mew
# mew — Modal Editing Witch

This is the core module of mew, a general modal editing engine generator.

## Usage

You can provide your `Key`, `Mode`, `Concurrent` modules to define the real world environment to get the core component of a modal editing engine.

The core compoment support recursive key mapping ossociated with user provided modes.

After the core component is generated, you may extended it with a translater to interpret user key sequence, so you'll get a complete modal editing engine.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.0
0.1.0
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(lang dune 1.4)
(lang dune 1.1)
2 changes: 1 addition & 1 deletion dune-workspace.4.02.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(lang dune 1.4)
(lang dune 1.1)

(context (opam (switch 4.02.3)))
(profile release)
2 changes: 1 addition & 1 deletion dune-workspace.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(lang dune 1.4)
(lang dune 1.1)

(context (opam (switch 4.03.0)))
(context (opam (switch 4.06.1)))
Expand Down
9 changes: 4 additions & 5 deletions mew.opam
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ license: "MIT"
dev-repo: "git+https://github.com/kandu/mew.git"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test & (ocaml:version >= "4.04.0")}
]
depends: [
"ocaml" {>= "4.03.0"}
"ocaml" {>= "4.02.3"}
"result"
"dune" {build}
"ppx_expect" {with-test}
"trie"
"dune" {>= "1.1.0"}
]

synopsis: "Modal editing witch"
description: """
"""
This is the core module of mew, a general modal editing engine generator."""

0 comments on commit e2a5ca8

Please sign in to comment.