Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ (JS syntax enhancment) Some JS syntax enhancment #12

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 11 additions & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath} ~/dev",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
}
]
}
43 changes: 41 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,53 +1,92 @@
# Change Log

All notable changes to the "outrun" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]
## [Released]

## [1.1.3] - 2020-09-11

- Component syntax highlighting for front-end JS framework

## [1.1.0] - 2020-09-11

- White a little more vibrant
- Object litteral keys for JS/TS

## [1.0.3] - 2019-07-08

- UI fixes (sidebar font with lower contrast)

## [1.0.1] - 2019-07-08

- JS enhancements for function & class
- UI fixes (hover, activeTab border)

## [0.2.2] - 2018-08-27

### Added

- Styling for Peek View editor
- Styling for indent guides and rulers
- General color improvements

## [0.2.1] - 2018-08-26

### Added

- Styling for Editor Widgets in both Night and Electric
- `this` keyword styling for TypeScript

### Changed

- Function names are no longer orange since we cannot scope to only declarations (See https://github.com/Microsoft/vscode-textmate/issues/52) :/

## [0.2.0] - 2018-08-26

### Added

- Outrun Night theme. This is a less-intense version of the original Outrun theme
- Outrun Electric theme. This is the original, high-contrast Outrun theme

### Changed

- Theme colors have been completely re-worked from the ground up. Editor features have been refined. Some features may be missing and will be implemented as noticed. Thank you for your patience :)

### Removed

- Outrun theme. The original Outrun theme has been split into Outrun Night and Outrun Electric. Choose one depending on your preferences.

## [0.1.3] - 2018-07-02

### Changed

- Changed Marketplace banner theme to `dark` even though docs reference this as the "font color". :/

## [0.1.2] - 2018-07-02

### Added

- Add icon and other marketplace niceties

## [0.1.0] - 2018-07-02

### Added
- Add orange foreground on library functions

- Add orange foreground on library functions
- Add cyan foreground and italic font on PHP `this` keyword

### Changed

- Remove foreground color from function calls

## [0.0.2] - 2018-07-02

### Added

- JavaScript scopes `variable.language.this.js` and `variable.language.super.js` are now styled in italic with a cyan foreground.

## [0.0.1] - 2018-06-29

- Initial release
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Outrun Theme for VS Code

Outrun is a fully custom theme for VS Code inspired by the colors, style, and culture of the [synthwave](https://ironskullet.com/2018/03/01/what-is-synthwave-2018-edition/) music scene.
This is my own version of Samrap's Outrun vscode theme.

The official landing page can be found at [https://outruntheme.com](https://outruntheme.com)
## Changes from original theme

Built by [Sam Rapaport](https://samrapdev.com)
- Typescript & Javascript syntax support
- UI has overall lower contrast

![Typescript](screenshots/typescript.png)

---

Looking for Sublime Text 3? [I got you covered](https://github.com/samrap/outrun-color-scheme-sublime)!
Built originally by [Sam Rapaport](https://samrapdev.com)

---

Expand All @@ -34,4 +37,4 @@ Alternatively, you may clone this repository into your `~/.vscode/extensions` di

#### Fixes & Enhancements

Outrun is a new theme and has not been tested with all languages/editor features. If you come across a weird style or have suggestions for improvements, submit an issue with the information.
Feel free to submit PR or issue if you see some bugs / improvements to be made !
13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "outrun",
"displayName": "Outrun",
"description": "A theme for VS Code inspired by the colors, style, and culture of the synthwave music scene.",
"version": "0.2.2",
"publisher": "samrapdev",
"repository": "https://github.com/samrap/outrun-theme-vscode",
"description": "My own version of Samrap's outrun VS Code theme",
"version": "1.1.3",
"publisher": "hhochart29",
"repository": "https://github.com/hhochart29/outrun-theme-vscode",
"homepage": "https://outruntheme.com",
"icon": "images/icon.png",
"galleryBanner": {
Expand All @@ -23,11 +23,6 @@
"label": "Outrun Night",
"uiTheme": "vs-dark",
"path": "./themes/outrun-night-color-theme.json"
},
{
"label": "Outrun Electric",
"uiTheme": "vs-dark",
"path": "./themes/outrun-electric-color-theme.json"
}
]
}
Expand Down
Binary file added screenshots/typescript.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading