CppFastOlympicCoding
Tools for competitive programming for Sublime Text 3 & 4
Details
Installs
- Total 51K
- Win 34K
- Mac 9K
- Linux 8K
| Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 5 | 11 | 3 | 4 | 7 | 8 | 5 | 9 | 12 | 5 | 14 | 5 | 5 | 5 | 10 | 6 | 9 | 5 | 2 | 2 | 1 | 4 | 14 | 8 | 4 | 6 | 5 | 3 | 9 | 8 | 14 | 11 | 9 | 16 | 8 | 11 | 11 | 10 | 6 | 6 | 14 | 4 | 12 | 7 | 5 | 20 |
| Mac | 5 | 5 | 0 | 1 | 6 | 0 | 1 | 2 | 3 | 1 | 6 | 4 | 0 | 5 | 6 | 2 | 2 | 0 | 3 | 1 | 2 | 2 | 1 | 2 | 2 | 5 | 0 | 2 | 4 | 4 | 1 | 2 | 1 | 2 | 3 | 1 | 5 | 5 | 6 | 6 | 2 | 1 | 4 | 1 | 7 | 0 |
| Linux | 1 | 2 | 3 | 2 | 3 | 1 | 0 | 7 | 0 | 0 | 4 | 4 | 0 | 1 | 1 | 1 | 0 | 2 | 1 | 3 | 0 | 3 | 2 | 3 | 1 | 4 | 0 | 0 | 4 | 2 | 3 | 2 | 3 | 2 | 3 | 7 | 5 | 0 | 4 | 5 | 1 | 2 | 2 | 3 | 4 | 0 |
Readme
- Source
- raw.githubusercontent.com
Fast Olympic Coding plugin for Sublime Text 3 & 4
Installation
- Install via Package Control
- Install manually:
download plugin into packages (Preferences — Browse packages...)
Warning! rename plugin folder to FastOlympicCoding
TestManager

TestManager Keybindings
- ctrl+b (OSX) ctrl+alt+b (Linux + Win) compile and run
- ctrl+enter new test
- ctrl+c (OSX) ctrl+x (Linux + Win) kill process
- ctrl+shift+b (OSX) run with debugger
- ctrl+d delete test
- ctrl+super+up/ctrl+super+down (OSX) ctrl+shift+up/ctrl+shift+down (Linux + Win) swap tests
- cmd+k, cmd+p (OSX) ctrl+k, ctrl+p (Linux + Win) close/open right panel
Settings
- To edit settings
- press cmd+shift+p (OSX) ctrl+shift+p (Linux + Win) and type
FastOlympicCoding: Open Settings - or
Preferences — Package Settings — FastOlympicCoding
- press cmd+shift+p (OSX) ctrl+shift+p (Linux + Win) and type
StressTesting

- To stress test a solution, you need to implement the three following files:
<name>.cpp- program that works incorrect<name>__Good.cpp- program that works correct<name>__Generator.cpp- program that generates tests, you can read a seed for a random generator in the input
- Type
FastOlympicCoding: Make Stressin the command palette to run andFastOlympicCoding: Stop Stressto stop stress testing
ClassCompletion

- Type aliases to substitute them with data types
- Customize aliases in the settings file
CppLint

- Error highlighting works in real-time
- Specify custom compile command in the settings file
Debugger

- debugger only for OSX
- ctrl+shift+b to run with debugger
- point the cursor on a variable to see its value
- to select a stack frame (type
FastOlympicCoding: Select Framein the command palette) - the only one dependency is xcode (you can install it with
xcode-select --install)