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

Moving to TS #47

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b40d370
delete compiled files from repository
elazarcoh Jan 12, 2022
a6afe15
init
elazarcoh Jan 13, 2022
e631dbb
change Style to DecorationRenderOptions
elazarcoh Jan 14, 2022
93b79d7
make configurations more sensible
elazarcoh Jan 16, 2022
6b22074
Correct small typo on README.md
jonz94 Mar 29, 2022
3b8805c
Bump terser from 5.7.2 to 5.14.2
dependabot[bot] Jul 20, 2022
2fa1ffa
Merge pull request #53 from jgclark/dependabot/npm_and_yarn/terser-5.…
jgclark Jul 20, 2022
01e5ae3
Bump nth-check from 2.0.0 to 2.1.1
dependabot[bot] Jul 20, 2022
fcab1bf
Bump ansi-regex from 3.0.0 to 3.0.1
dependabot[bot] Jul 20, 2022
40c1bd0
Merge pull request #55 from jgclark/dependabot/npm_and_yarn/ansi-rege…
jgclark Jul 20, 2022
e45e20b
Merge pull request #54 from jgclark/dependabot/npm_and_yarn/nth-check…
jgclark Jul 20, 2022
1923482
creates diagnostics for open files
farwyler Oct 28, 2022
bf54e46
Merge pull request #58 from farwyler/enable-diagnostics
jgclark Oct 29, 2022
700c865
Bump nanoid and mocha
dependabot[bot] Oct 29, 2022
06d929f
Bump markdown-it and vsce
dependabot[bot] Oct 29, 2022
be55281
Followup: Fix wrong syntax
alkatar21 Oct 29, 2022
7f11abb
Merge pull request #60 from jgclark/dependabot/npm_and_yarn/nanoid-an…
jgclark Oct 29, 2022
9354cfa
Merge pull request #61 from jgclark/dependabot/npm_and_yarn/markdown-…
jgclark Oct 29, 2022
a75054a
Merge pull request #51 from jonz94/master
jgclark Oct 29, 2022
a523a5f
Merge pull request #62 from alkatar21/patch-1
jgclark Oct 29, 2022
db9898b
Merge pull request #46 from elazarcoh/master
jgclark Oct 29, 2022
98cabca
Merge branch 'to-ts'
elazarcoh Nov 2, 2022
4e1b4aa
update config
elazarcoh Nov 2, 2022
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
HOWTO-publish.md
.vscode/tasks.json
node_modules/
dist/
.vsixmanifest
vsc-todo-highlight.code-workspace
todo-highlight.code-workspace
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// A launch configuration that compiles the extension and then opens it inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: webpack"
}
]
}
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
"npm.packageManager": "npm",
}
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ To customize the keywords and other settings, <kbd>command</kbd> + <kbd>,</kbd>
| | type | default | description |
| ------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| todohighlight.isEnable | boolean | true | Toggle the highlight, default is true. |
| todohighlight.enableDiagnostics | boolean | true | Enable creating diagnostic entries for open files in the problems view. Default is false. |
| todohighlight.isCaseSensitive | boolean | true | Whether the keywords are case sensitive or not. |
| todohighlight.keywords | array | N/A | An array of keywords that will be highlighted. You can also specify the style for each keyword here, and a more advanced regex to detect the item to highlight. See example below for more information. |
| todohighlight.keywordsPattern | string | N/A | Specify keywords via regex instead of `todohighlight.keywords` one by one. NB: if this is present, `todohighlight.keywords` will be ignored. Remember to escape the backslash if there's any in your regex (using \\ (double backslash) instead of single backslash). |
Expand Down Expand Up @@ -76,7 +77,8 @@ An example of a custom configuration, showing a range of the different features:
"color": "red",
"border": "1px solid red",
"borderRadius": "2px", // NOTE: use borderRadius along with `border` or you will see nothing change
"backgroundColor": "rgba(0,0,0,.2)"
"backgroundColor": "rgba(0,0,0,.2)",
"diagnosticSeverity": "warning" // Set diagnostic severity to `none`, `information`, `warning` or `error`
},
{
"text": "TODO(string):", // with a regex pattern defined, this setting isn't used, but is useful as a name for this section
Expand All @@ -98,7 +100,7 @@ An example of a custom configuration, showing a range of the different features:
/**
* Positive lookbehind (`(?<=...)`) is only supported in Node.js v9 and up.
* If your VSCode version is built on an earlier version the example above may not work. Simple tests:
* Shouldm't work: note deNOTEd NOTEing
* Shouldn't work: note deNOTEd NOTEing
* Should work: NOTE: "NOTE:"
**/
},
Expand Down
2 changes: 0 additions & 2 deletions dist/extension.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/extension.js.map

This file was deleted.

Loading