https://github.com/himkt/cargo-atcoder.nvim
https://github.com/himkt/cargo-atcoder.nvim
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/himkt/cargo-atcoder.nvim
- Owner: himkt
- Created: 2022-06-16T14:16:45.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-19T15:35:49.000Z (almost 4 years ago)
- Last Synced: 2025-03-02T17:48:42.841Z (over 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cargo-atcoder.nvim
### Install
```vim
call plug#begin('~/.config/nvim/plugged')
Plug 'himkt/cargo-atcoder.nvim'
call plug#end()
```
### Usage
- `:CargoAtcoderOpen` to open the problem page
- `:CargoAtcoderRun` to run the code (actually it is not `cargo-atcoder` feature)
- `:CargoAtcoderStatus` to view the stats
- `:CargoAtcoderSubmit` to make a submission
- `:CargoAtcoderSubmitForce` to make a submission even if the program is wrong on samples
- `:CargoAtcoderTest` to run the code on samples
### Developing
`vim-plug` can register the local plugin.
```vim
call plug#begin('~/.config/nvim/plugged')
Plug 'file:///Users/himkt/work/github.com/himkt/cargo-atcoder.nvim'
call plug#end()
```
Don't forget to run `git commit`, `vim-plug` recognizes only committed files.
After installing the package by `:PlugInstall`, run `:UpdateRemotePlugins` as well.