Skip to content

Commit

Permalink
Created new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
renathossain committed May 11, 2024
1 parent cdf8cbe commit 80994b9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 1.2.0

- Added feature that adds the directory of the markdown file to Python's sys.path, allowing you to import modules from the same directory.
- Extension settings now apply without restarting VS Code.

## 1.1.0

- Enhanced user-friendliness of "Compiler Configuration" settings by integrating them into the VS Code Extension Settings UI. Users can now directly edit, add, or reset configurations for each language without the need to modify a .json file.
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ On Arch Linux, you can install all supported languages with 1 command!
sudo pacman --needed -S php perl r dart groovy go rustup ghc julia lua ruby nodejs npm python bash
```

On other less excellent operating systems, please research the installation process. Consider using the [Windows Subsystem for Linux](https://learn.microsoft.com/en-us/windows/wsl/install) on Windows.
Please research the language installation process on other operating systems. Consider using the [Windows Subsystem for Linux](https://learn.microsoft.com/en-us/windows/wsl/install) on Windows.

## Demo

Expand All @@ -35,7 +35,7 @@ Download or copy [DEMO.md](DEMO.md) into VS Code after installing this extension

### Compiler Configuration

- Add or modify the entries representing compiler configurations and restart VS Code afterwards. Each entry consists of an array defining the properties for a specific programming language. The array elements represent: [Language Name, File Extension, Compiler Command/Path, Compiled (true/false)]. You can only add non-compiled languages here.
- Add or modify the entries representing compiler configurations. Each entry consists of an array defining the properties for a specific programming language. The array elements represent: [Language Name, File Extension, Compiler Command/Path, Compiled (true/false)]. You can only add non-compiled languages here.

```json
// Example
Expand All @@ -50,6 +50,10 @@ Download or copy [DEMO.md](DEMO.md) into VS Code after installing this extension
}
```

### Python Path

Enabling this setting adds the directory of the markdown file to Python's sys.path, allowing you to import modules from the same directory.

## Future Development

Please note that the following features are desired for future development, but their implementation is not guaranteed:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Enables the seamless execution of code blocks in any language within Markdown files in VS Code",
"publisher": "renathossain",
"icon": "Icon.png",
"version": "1.1.0",
"version": "1.2.0",
"engines": {
"vscode": "^1.87.0"
},
Expand Down

0 comments on commit 80994b9

Please sign in to comment.