Automatic backups are enabled by default.
Automatic backups are recommended to keep it enabled
Backup to ~/.cache/moe/backups
by default.
You can set an interval to execute backups.
QuickRun is like vim-quickrun.
You can use \ + r
in normal mode. And run
or Q
command in ex mode.
Currently QuickRun supports these languages by default and runs the following command internally.
- Nim
nim c -r filename
- C
gcc filename && ./a.out
- C++
g++ filename && ./a.out
- bash
bash filename
- sh
sh filename
You can overwrite the command to be executed in the setting. That way you can use other compilers and languages.
moe supports VS Code themes in addition to dark, vivid, light, which are provided as standard.
moe is searching and reflects the current VSCode theme if you already installed VSCode and you set "vscode" in the configuration file.
moe can build on save if you set true in BuildOnSave.enable in the configuration file.
By default, the nim c filename
command is executed.
You can set workSpaceRoot and command to be executed in the configuration file.
History mode is experimental feature.
You can check, restore and delete backup files in this mode.
If you select backup file, you can check the difference from the current original file.
moe can now use simple auto-complete.
It is possible to auto-complete a words in the currently open buffer.
moe can use Vim-like registers.
Name | Description |
---|---|
0 | Yanked text |
1 | Deleted line. One line or less is stored in the small delete register - |
2 | Every time a new delete command is issued, the contents of 1 are stored |
3~9 | Similar to 2 , the contents of the previous register are stored sequentially |
Name | Description |
---|---|
- | Deleted text |
Name | Description |
---|---|
a~z | Any text can be stored |
Stores the value of the last used register.