Skip to content

Commit 2c86b4d

Browse files
committed
feat: Split core/std part into individual modules
1 parent fa24a89 commit 2c86b4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+97
-4809
lines changed

.github/workflows/jsr.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ on:
55
branches:
66
- main
77
pull_request:
8-
paths:
9-
- "**.md"
10-
- "**.ts"
11-
- "deno.jsonc"
12-
- ".github/workflows/test.yml"
138
workflow_dispatch:
149
inputs:
1510
denops_branch:
@@ -32,6 +27,7 @@ jobs:
3227
- ubuntu-latest
3328
deno_version:
3429
- "1.x"
30+
- "2.x"
3531
runs-on: ${{ matrix.runner }}
3632
steps:
3733
- run: git config --global core.autocrlf false
@@ -65,8 +61,8 @@ jobs:
6561
- macos-latest
6662
- ubuntu-latest
6763
deno_version:
68-
- "1.45.0"
6964
- "1.x"
65+
- "2.x"
7066
host_version:
7167
- vim: "v9.1.0448"
7268
nvim: "v0.10.0"
@@ -131,14 +127,3 @@ jobs:
131127
os: ${{ runner.os }}
132128
files: ./coverage.lcov
133129
token: ${{ secrets.CODECOV_TOKEN }}
134-
135-
jsr-publish:
136-
runs-on: ubuntu-latest
137-
steps:
138-
- uses: actions/checkout@v4
139-
- uses: denoland/setup-deno@v1
140-
with:
141-
deno-version: ${{ env.DENO_VERSION }}
142-
- name: Publish (dry-run)
143-
run: |
144-
deno publish --dry-run

.gitmessage

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11

2-
3-
# Guide (v1.0)
4-
#
5-
# 👍 :+1: Apply changes.
2+
# **Conventional Commits**
63
#
7-
# 🌿 :herb: Add or update things for tests.
8-
# ☕ :coffee: Add or update things for developments.
9-
# 📦 :package: Add or update dependencies.
10-
# 📝 :memo: Add or update documentations.
4+
# <type>[optional scope]: <description>
115
#
12-
# 🐛 :bug: Bugfixes.
13-
# 💋 :kiss: Critical hotfixes.
14-
# 🚿 :shower: Remove features, codes, or files.
6+
# feat: feature (minor)
7+
# deps: dependencies (minor/patch)
8+
# fix: bug fix (patch)
9+
# refactor: refactoring code
10+
# test: test fix; no code change
11+
# docs: documentation fix; no code change
12+
# style: formatting, missing semi colons, etc; no code change
13+
# chore: updating build tasks, package manager configs, etc; no code change
1514
#
16-
# 🚀 :rocket: Improve performance.
17-
# 💪 :muscle: Refactor codes.
18-
# 💥 :boom: Breaking changes.
19-
# 💩 :poop: Bad codes needs to be improved.
15+
# **Install**
2016
#
21-
# How to use:
2217
# git config commit.template .gitmessage
2318
#
24-
# Reference:
25-
# https://github.com/lambdalisue/emojiprefix
19+
# **Reference**
20+
#
21+
# - https://www.conventionalcommits.org/en/v1.0.0/

.script/gen-builtin-renderer-nerdfont.ts

Lines changed: 0 additions & 22 deletions
This file was deleted.

.script/gen-exports.ts

Lines changed: 0 additions & 69 deletions
This file was deleted.

.script/gen-mod.ts

Lines changed: 0 additions & 66 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# 🍂 fall
22

3-
[![Test](https://github.com/lambdalisue/vim-fall/actions/workflows/test.yml/badge.svg)](https://github.com/lambdalisue/vim-fall/actions/workflows/test.yml)
4-
[![codecov](https://codecov.io/gh/lambdalisue/vim-fall/graph/badge.svg?token=IsZ3yEM1by)](https://codecov.io/gh/lambdalisue/vim-fall)
53
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
64
[![vim help](https://img.shields.io/badge/vim-%3Ah%20fall-orange.svg)](doc/fall.txt)
75

@@ -11,8 +9,8 @@
119

1210
</div>
1311

14-
Fall (_vim-fall_) is an abbreviation for "Filter All," another fuzzy finder
15-
designed for Vim and Neovim and implemented in [Denops].
12+
Fall is an abbreviation for "Filter All," another fuzzy finder designed for Vim
13+
and Neovim and implemented in [Denops].
1614

1715
**Alpha version. Please note that any changes, including those that may be
1816
backward incompatible, will be implemented without prior announcements.**
@@ -32,7 +30,7 @@ To install [Denops] and this plugin using your preferred plugin manager, such as
3230

3331
```vim
3432
Plug 'vim-denops/denops.vim'
35-
Plug 'lambdalisue/vim-fall'
33+
Plug 'vim-fall/fall'
3634
```
3735

3836
[vim-plug]: https://github.com/junegunn/vim-plug

0 commit comments

Comments
 (0)