Skip to content

Commit

Permalink
Release 1.0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Oct 13, 2024
2 parents f7957ab + c25414f commit e84ce35
Show file tree
Hide file tree
Showing 327 changed files with 17 additions and 4 deletions.
15 changes: 14 additions & 1 deletion make/helpers/unicode-kind.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,20 @@ export const isWS = function (c) {
);
};
export function isLocaleDependentFwidPunct(c) {
return c == 0xff01 || c == 0xff0c || c == 0xff0e || c == 0xff1a || c == 0xff1b || c == 0xff1f;
return (
c == 0xff01 ||
c == 0xff08 ||
c == 0xff09 ||
c == 0xff0c ||
c == 0xff0e ||
c == 0xff1a ||
c == 0xff1b ||
c == 0xff3b ||
c == 0xff3d ||
c == 0xff5b ||
c == 0xff5d ||
c == 0xff1f
);
}
export const isLongDash = function (c, isTerm) {
return isTerm ? c === 0x2e3a || c === 0x2e3b : false;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sarasa-gothic",
"version": "1.0.21",
"version": "1.0.22",
"main": "./run",
"scripts": {
"lint": "eslint",
Expand Down
Loading

0 comments on commit e84ce35

Please sign in to comment.