A terminal text editor to be ACCEPTED.
A modal text editor for competitive programmer written with Rust.
Currently Accepted supports Rust and C++.
You need nightly Rust.
bash
$ cargo install accepted
If you want to install HEAD
version, you can install from git to
bash
$ cargo install -f --git=https://github.com/hatoo/Accepted
Install rust components.
$ rustup component add rls-preview
$ rustup component add rust-src
$ rustup component add rustfmt-preview
Install clang, clang-format and clangd.
$ acc [file]
TODO: More precisely.
Many commands of acc
is same as Vim.
i, I, a, A, o, O to insert mode and Esc to return.
hjkl, w, e, b to move cursor.
y, d, c, v, V works like vim
Some of commands can run with space as a prefix.
SPACE -> q to Quit.
SPACE -> s to Save.
SPACE -> a to Save As.
SPACE -> y to Copy all to clipboard
SPACE -> SPACE to Rustfmt.
SPACE -> t to compile and run with clipboard input.
SPACE -> T to compile (optimized) and run with clipboard input.
SPACE -> q to Quit.
SPACE -> r to Start rmate server
You can configure this by toml file placed in [config_dir]/acc/config.toml
config_dir
is defined in here.
Below is default configure. You can override with your own configure.
```TOML
[filedefault] indentwidth = 4
ansi_color = false
[file.rs]
compiler = { command=["rustc", "$FilePath$", "-Z", "unstable-options", "--error-format=json"], type="rustc", optimize_option=["-O"] }
lsp = ["rls"]
formatter = ["rustfmt"]
[file.cpp]
indentwidth = 2 compiler = { command=["clang", "$FilePath$", "-o", "$FileStem$"], type="gcc", optimizeoption=["-O2"] } lsp = ["clangd"] formatter = ["clang-format"] ```
This supports vscode style snippet.
You can specify snippet files in configure
```toml
[file.rs]
snippets=["~/.config/acc/snippet.json"] ```
Any kind of contribution including feature request is welcome!!