Skip to content

Commit

Permalink
add blocky trigger indicator lines option
Browse files Browse the repository at this point in the history
  • Loading branch information
HJfod committed Dec 19, 2024
1 parent 835de3a commit 1665a7e
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 39 deletions.
12 changes: 9 additions & 3 deletions mod.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"geode": "4.0.1",
"geode": "4.1.0",
"version": "6.10.0-alpha.3",
"gd": {
"win": "2.2074",
Expand Down Expand Up @@ -211,15 +211,21 @@
"type": "string",
"one-of": ["None", "Selected Only", "All"],
"default": "Selected Only",
"name": "Dynamic Trigger Indicator Colors",
"name": "Trigger Indicators: Dynamic Colors",
"description": "Control whether <cj>Trigger Indicators</c> should be colored based on the trigger, or if they should just be white"
},
"trigger-indicators-color-objects": {
"type": "bool",
"default": false,
"name": "Trigger Indicator Color Selection",
"name": "Trigger Indicators: Color Selection",
"description": "Control whether <cj>Trigger Indicators</c> should also color the target objects, or only point to them via the line"
},
"trigger-indicators-blocky": {
"type": "bool",
"default": true,
"name": "Trigger Indicators: Blocky Lines",
"description": "Control whether <cj>Trigger Indicators</c> should draw a direct line to the target objects, or a blocky line that only takes 90-degree turns"
},
"wip-section": {
"type": "title",
"name": "WIP Features",
Expand Down
83 changes: 47 additions & 36 deletions swipe-vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,48 @@
{
"name": "swipelang-support",
"displayName": "Swipe Language Support",
"description": "Support for the Swipe language for scripting in BetterEdit",
"author": {
"name": "HJfod",
"url": "https://github.com/hjfod"
},
"repository": {
"url": "https://github.com/hjfod/BetterEdit"
},
"publisher": "HJfod",
"version": "0.0.1",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "swipe",
"aliases": ["Swipe"],
"extensions": [".swipe"],
"configuration": "./language-configuration.json",
"icon": {
"dark": "./swipe.png",
"light": "./swipe.png"
}
}],
"grammars": [{
"language": "swipe",
"scopeName": "source.swipe",
"path": "./syntaxes/swipe.tmLanguage.json"
}]
}
{
"name": "swipelang-support",
"displayName": "Swipe Language Support",
"description": "Support for the Swipe language for scripting in BetterEdit",
"author": {
"name": "HJfod",
"url": "https://github.com/hjfod"
},
"repository": {
"url": "https://github.com/hjfod/BetterEdit"
},
"publisher": "HJfod",
"version": "0.0.1",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "swipe",
"aliases": [
"Swipe"
],
"extensions": [
".swipe"
],
"configuration": "./language-configuration.json",
"icon": {
"dark": "./swipe.png",
"light": "./swipe.png"
}
}
],
"grammars": [
{
"language": "swipe",
"scopeName": "source.swipe",
"path": "./syntaxes/swipe.tmLanguage.json"
}
]
},
"__metadata": {
"size": 120463
}
}

0 comments on commit 1665a7e

Please sign in to comment.