Skip to content

Commit 6bd0c41

Browse files
committed
Merge branch 'dev-0.1.1' into release-0.1
2 parents 1de6d7c + 3a27ac5 commit 6bd0c41

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "UnicodeREPL"
22
uuid = "386912cb-a936-462a-a347-7bd6cef0b04e"
33
authors = ["GHTaarn <[email protected]>"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55

66
[deps]
77
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"

README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
# UnicodeREPL
22

33
This is a small [Julia](https://julialang.org) package that enables the user
4-
to obtain any Unicode character (that the system fonts can display) in the
5-
Julia REPL if the [Unicode codepoint](https://codepoints.net) is known.
4+
to obtain any Unicode character in the Julia REPL if the
5+
[Unicode codepoint](https://codepoints.net) is known (and if the system fonts
6+
can display it).
67

78
## Installation
89

910
In the Julia REPL type:
1011
```julia
1112
import Pkg
12-
Pkg.add("https://github.com/GHTaarn/UnicodeREPL.jl")
13+
Pkg.add("UnicodeREPL")
1314
```
15+
(Because `UnicodeREPL.jl` uses non-public Julia interface components,
16+
the official version is only compatible with stable Julia versions.
17+
You can bypass this check with
18+
`Pkg.add("https://github.com/GHTaarn/UnicodeREPL.jl#nocompat")` if you are
19+
using an unstable version of Julia)
1420

1521
## Use
1622

@@ -19,9 +25,13 @@ In the Julia REPL type:
1925
using UnicodeREPL
2026
```
2127

22-
Hereafter, you will be able to enter "unicode repl" mode by typing
28+
Herafter you can use the docstring (by typing `?UnicodeREPL`) to get a
29+
quick overview of how to use UnicodeREPL.
30+
31+
The main feature is "unicode repl" mode, which can be entered by typing
2332
the `^` character at the start of a line.
24-
In "unicode repl" mode, any pattern matching `\u(XXXX)` will be
33+
When the `Tab` key is pressed in "unicode repl" mode, patterns matching
34+
`\u(XXXX)` will be
2535
converted to the Unicode character corresponding to `XXXX`, where `XXXX` is a
2636
string of any length containing the hexadecimal
2737
[Unicode codepoint](https://codepoints.net) of a valid Unicode character.

src/UnicodeREPL.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
44
On an empty line, press ^ to enter unicode_repl mode and backspace to exit.
55
6-
In unicode_repl mode, `\\u(XXXX)` tab completes to the symbol at Unicode
7-
codepage `XXXX` where `XXXX` is a hexadecimal string of any length.
6+
In unicode_repl mode, `\\u(XXXX)` tab completes to the symbol with Unicode
7+
codepoint `XXXX` where `XXXX` is a hexadecimal string of any length.
88
99
## Exported Symbols
1010

0 commit comments

Comments
 (0)