rioj7

Results 88 comments of rioj7

I think they are working on a way to let an extension read the terminal content or somehow hook into the stdin/stdout. I don't know the status of this feature....

@tcm0116 The fact that I do not support the `${input}` variable is that I don't know which `.json` is the source of the command (task, launch, keybindings). I'll look into...

@tcm0116 You can use the `${command}` variable. And use `rememberTransformed` to store/remember the result of the command. ```json "inputs": [ { "id": "pickBazelTarget", "type": "command", "command": "extension.commandvariable.pickStringRemember", "args": { "description":...

@sammck Does the example in this [comment](https://github.com/rioj7/command-variable/issues/45#issuecomment-1416781180) solve your issue?

You can create a combined command with [multi-command](https://marketplace.visualstudio.com/items?itemName=ryuta46.multi-command) and [Launch Configs](https://marketplace.visualstudio.com/items?itemName=ArturoDent.launch-config). You can use the commands from "Launch Configs" also in "multi-command". Create a combined command: 1. run a named...

@Ameerbajracharya I have written a [Remove Comments](https://marketplace.visualstudio.com/items?itemName=rioj7.vscode-remove-comments) extension that has Laravel Blade support in v1.3.0. It supports the following comments: * `{{--`, `--}}`; * `/*`, `*/` * `//` * `#`...

@akpmohan07 Please use block code formatting (tripple backtick), your code is not single line

It looks like this is no longer maintained and it can only handle 1 type of line and block comment. There is an alternative extensions that removes comments and it...

@rohan-paul Because it is not a comment, it is a documentation string, use the `#` character if you write comments Python does not have Multi Line comments, `"""` and `'''`...