Skip to content

Commit afe689a

Browse files
authored
Merge pull request #110 from plx-pdg/release-v0.2.0
Release v0.2.0
2 parents 3183de1 + b71d059 commit afe689a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@
88
###### Useful links
99
[Website](https://plx.rs) -
1010
[WHY ?](https://plx.rs/book/why.html) -
11-
[Git repository of PLX](https://github.com/plx-pdg/plx) -
12-
[Git repository of this website](https://github.com/plx-pdg/plx-pdg.github.io)
11+
[Git repository of PLX website](https://github.com/plx-pdg/plx-pdg.github.io)
1312

1413
### Introduction
1514

1615
PLX is a project developed to enhance the learning of programming languages, with a focus on a smooth and optimized learning experience. The goal of this project is to reduce the usual friction involved in completing coding exercises (such as manual compilation, running, testing, and result verification) by automating these steps.
1716

1817
PLX offers a terminal user interface (TUI) developed in Rust and supports multiple languages (currently C and C++). It enables automatic compilation as soon as a file is saved, automated checks to compare program outputs, and instant display of errors and output differences. The solution code can also be displayed. The project draws inspiration from [Rustlings](https://rustlings.cool/) and aims to create a more efficient learning experience, particularly for programming courses at HEIG-VD.
1918

19+
### Docs
20+
21+
We deploy documentations on [our website](https://plx.rs/book).## Docs
22+
2023
### Installation
2124

2225
#### Prerequisites
@@ -38,7 +41,7 @@ Once you have plx installed, you can try it on this repo's example folder
3841
3942
> [!WARNING]
4043
> The open editor feature is currently unstable, using a terminal based editor causes problems
41-
> The following editors were tested and work fine: `code`, `idea` and `codium`
44+
> The following editors were tested and work fine: `code`, `clion` and `codium`
4245
4346
> [!IMPORTANT]
4447
> Only C and C++ exercises are valid for now, java and other languages support is comming soon™

src/core/editor/editor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn get_default_editor() -> Option<String> {
77
let valid_editors: Vec<String> = vec![
88
String::from("code"),
99
String::from("codium"),
10-
String::from("idea"),
10+
String::from("clion"),
1111
];
1212
if valid_editors.contains(&editor) {
1313
Some(editor)

0 commit comments

Comments
 (0)