forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'helix-editor:master' into better-bufferline
- Loading branch information
Showing
59 changed files
with
1,053 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,9 @@ on: | |
schedule: | ||
- cron: "00 01 * * *" | ||
|
||
env: | ||
MSRV: "1.76" | ||
|
||
jobs: | ||
check: | ||
name: Check (msrv) | ||
|
@@ -18,7 +21,9 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Install MSRV toolchain | ||
uses: dtolnay/[email protected] | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.MSRV }} | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
|
@@ -39,7 +44,9 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Install MSRV toolchain | ||
uses: dtolnay/[email protected] | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.MSRV }} | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
|
@@ -71,8 +78,9 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Install MSRV toolchain | ||
uses: dtolnay/rust-toolchain@1.76 | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.MSRV }} | ||
components: rustfmt, clippy | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
|
@@ -99,7 +107,9 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Install MSRV toolchain | ||
uses: dtolnay/[email protected] | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.MSRV }} | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# Commands | ||
|
||
Command mode can be activated by pressing `:`. The built-in commands are: | ||
- [Typable commands](#typable-commands) | ||
- [Static commands](#static-commands) | ||
|
||
## Typable commands | ||
|
||
Typable commands are used from command mode and may take arguments. Command mode can be activated by pressing `:`. The built-in typable commands are: | ||
|
||
{{#include ./generated/typable-cmd.md}} | ||
|
||
## Static Commands | ||
|
||
Static commands take no arguments and can be bound to keys. Static commands can also be executed from the command picker (`<space>?`). The built-in static commands are: | ||
|
||
{{#include ./generated/static-cmd.md}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.