All Questions
Tagged with vscode-tasks regex
5 questions
-1
votes
1
answer
381
views
problemMatcher not matching
I'm trying to write a simple problem matcher for the output of ts-node-dev, but for some reason VSCode never detects problems in the output.
Here's the terminal output I would like to match; it ...
0
votes
1
answer
1k
views
VS Code custom problemMatcher doesn't work
I have a problem with setting up problemMatcher for my watch task. The regex seems to be correct, but it doesn't show any errors in the problems tab even then they show in the console. What am I ...
1
vote
2
answers
303
views
Replace a Tag Name while keeping the rest as it is
I want to preface by saying I am a novice at regex, and I've spent a considerable amount of time trying to solve this myself using tutorials, online docs, etc. I have also gone through the suggested ...
23
votes
3
answers
15k
views
Visual Studio Code: How to automate a simple regex-find and replace?
I try to create a simple regex-find and replace task in Visual Studio Code.
Currently I copy from the AD some Users to a temporary file in Visual Studio code and remove the "CN=" at the beginning of ...
1
vote
1
answer
746
views
Visual Studio Code problem matcher not working with custom output
I'm trying to get VS Code working with custom output. I've created a batch file which prints out:
warning:main.asm(5):Something is wrong
ERROR:main.asm(2):Something else is wrong
But when I run the ...