diff --git a/vscode-extensions/vscode-properties/.gitignore b/vscode-extensions/vscode-properties/.gitignore deleted file mode 100644 index 2c8a8002a..000000000 --- a/vscode-extensions/vscode-properties/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -out -node_modules -*.log -*.log.* -.idea -*.iml -*.vsix -.DS_Store -**/.DS_Store \ No newline at end of file diff --git a/vscode-extensions/vscode-properties/.vscode/launch.json b/vscode-extensions/vscode-properties/.vscode/launch.json deleted file mode 100644 index be1d1b31c..000000000 --- a/vscode-extensions/vscode-properties/.vscode/launch.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Launch Extension", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}" - ], - "stopOnEntry": false, - "sourceMaps": true, - "outDir": "${workspaceRoot}", - "preLaunchTask": "npm" - } - ] -} \ No newline at end of file diff --git a/vscode-extensions/vscode-properties/.vscode/tasks.json b/vscode-extensions/vscode-properties/.vscode/tasks.json deleted file mode 100644 index 1cbb9fd45..000000000 --- a/vscode-extensions/vscode-properties/.vscode/tasks.json +++ /dev/null @@ -1,30 +0,0 @@ -// Available variables which can be used inside of strings. -// ${workspaceRoot}: the root folder of the team -// ${file}: the current opened file -// ${fileBasename}: the current opened file's basename -// ${fileDirname}: the current opened file's dirname -// ${fileExtname}: the current opened file's extension -// ${cwd}: the current working directory of the spawned process - -// A task runner that calls a custom npm script that compiles the extension. -{ - "version": "0.1.0", - - // we want to run npm - "command": "npm", - - // the command is a shell script - "isShellCommand": true, - - // show the output window only if unrecognized errors occur. - "showOutput": "silent", - - // we run the custom script "compile" as defined in package.json - "args": ["run", "compile"], //, "--loglevel", "silent"], - - // The tsc compiler is started in watching mode - "isWatching": true, - - // use the standard tsc in watch mode problem matcher to find compile problems in the output. - "problemMatcher": "$tsc-watch" -} \ No newline at end of file diff --git a/vscode-extensions/vscode-properties/icon.png b/vscode-extensions/vscode-properties/icon.png deleted file mode 100644 index 394072044..000000000 Binary files a/vscode-extensions/vscode-properties/icon.png and /dev/null differ diff --git a/vscode-extensions/vscode-properties/language-configuration.json b/vscode-extensions/vscode-properties/language-configuration.json deleted file mode 100644 index 07b1cd45e..000000000 --- a/vscode-extensions/vscode-properties/language-configuration.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "comments": { - "lineComment": "#", - "blockComment": [ "#", "!" ] - }, - "brackets": [ - ["{", "}"], - ["[", "]"], - ["(", ")"] - ], - "autoClosingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"], - ["\"", "\""], - ["'", "'"] - ], - "surroundingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"], - ["\"", "\""], - ["'", "'"] - ] -} \ No newline at end of file diff --git a/vscode-extensions/vscode-properties/package.json b/vscode-extensions/vscode-properties/package.json deleted file mode 100644 index 82675b950..000000000 --- a/vscode-extensions/vscode-properties/package.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "java-properties", - "displayName": "Java Properties files Support", - "description": "Provides syntax highlighting for Java Properties files", - "icon": "icon.png", - "version": "0.0.10", - "publisher": "pivotal", - "repository": { - "type": "git", - "url": "https://github.com/spring-projects/sts4.git" - }, - "license": "EPL", - "engines": { - "vscode": "^1.15.0" - }, - "categories": [ - "Languages" - ], - "keywords": [ - "properties", - "java" - ], - "contributes": { - "languages": [ - { - "id": "java-properties", - "aliases": [ - "Java-Properties", - "java-proeprties" - ], - "extensions": [ - ".properties" - ], - "configuration": "./language-configuration.json" - } - ], - "grammars": [ - { - "language": "java-properties", - "scopeName": "source.java-properties", - "path": "./syntaxes/JavaProperties.plist" - } - ] - } -} diff --git a/vscode-extensions/vscode-properties/syntaxes/JavaProperties.plist b/vscode-extensions/vscode-properties/syntaxes/JavaProperties.plist deleted file mode 100644 index 72e0214e6..000000000 --- a/vscode-extensions/vscode-properties/syntaxes/JavaProperties.plist +++ /dev/null @@ -1,160 +0,0 @@ - - - - - fileTypes - - properties - - foldingStartMarker - ^[a-zA-Z0-9.-_]+=.*\ - - foldingStopMarker - ^(.*(?<!\) -) - keyEquivalent - ^~J - name - Java Properties - patterns - - - comment - Ignore blank lines - match - ^\s*$ - - - include - #comment-line - - - include - #property-name - - - include - #property-definition - - - repository - - comment-line - - captures - - 1 - - name - punctuation.whitespace.comment.leading.java-properties - - 2 - - name - punctuation.definition.comment.java-properties - - - match - ^(\s*)([#!])(.+)?$\n? - name - comment.line.java-properties - - property-definition - - begin - ^(\s*)((?:\\[ \t]|\\:|\\=|[^:=\s])+)(?:\s*([:=]))?\s* - beginCaptures - - 1 - - name - punctuation.whitespace.leading.java-properties - - 2 - - name - support.constant.java-properties - patterns - - - match - \\(?:[ \t:=\\ntfr\"']|u[0-9A-Fa-f]{4}) - name - constant.character.escape.java-properties - - - - 3 - - name - punctuation.separator.key-value.java-properties - - - contentName - string.unquoted.java-properties - end - (?<!\\{1})$\n - name - meta.key-value.java-properties - patterns - - - comment - Leading space on a continued line is ignored - match - ^\s* - name - punctuation.whitespace.leading.java-properties - - - match - (\\{1})(?=$\n) - name - punctuation.separator.continuation.java-properties - - - match - \\(?:[\\ntfr\"']|u[0-9A-Fa-f]{4}) - name - constant.character.escape.java-properties - - - - property-name - - captures - - 1 - - name - punctuation.whitespace.comment.leading.java-properties - - 2 - - name - support.constant.java-properties - patterns - - - match - \\(?:[ \t:=\\ntfr\"']|u[0-9A-Fa-f]{4}) - name - constant.character.escape.java-properties - - - - - comment - A property name with no value - match - ^(\s*)((?:\\[ \t]|\\:|\\=|[^:=\s])+)(?:\s*([:=]))?\s*$\n - name - meta.key-value.java-properties - - - scopeName - source.java-properties - uuid - D364E829-7643-4AFF-948D-3C0D6B4EA8A4 - - \ No newline at end of file