Can I get this in VSCode (for Angular, RxJS)? - visual-studio-code

I've stumbled upon these snippets (?) in some tutorial for RxJS code in WebStorm. What is it called, and can I get the same for for VSCode, and for Angular maybe?
I know there is a "hover" function in VSCode, but I was thinking about the same?
Thanks

It's called Parameter name inlay hints. You can get them by:
going into VSCode Settings (Ctrl + ,)
search parameter name
On the left select TypeScript
On the right in drop down options you can select none, all or literals
You can do this for JavaScript or Typescript, or both
:-)

Related

VS Code, Syntax highlighting Powershell

Ive been scratching my head with this one. Previously VS Code highlighted Powershell scripts and modules just fine with highlighting functions in yellow and variables $var in light blue. Both as part of a string and "stand-alone". However, suddenly it doesn't highlight functions or variables anymore? I've tried to uninstall and reinstall the powershell extension from Microsoft, as well as disable and re-enable the built in language support for powershell.
I've not been able to find any support regarding this issue and hope that I might be able to find it here.
Have you tried this?
File Association.
Basically:
The easiest way I've found for a global association is simply to Ctrl+k m (or Ctrl+Shift+P and type "change language mode") with a file of the type you're associating open.
In the first selections will be the option "Configure File Association for 'x' " (whatever file type - see image attached). Selecting this gives you the option to choose the language and will then make the filetype association permanent.
if you start your code block with a ```PowerShell it will highlight the syntax properly.
I've noticed that you may also need to end your code block with a ``` in VSCode specifically.

Visual Studio Code Autocomplete Add Parentheses After Method in .js File

When I type console.lo in a .js file in Visual Studio Code, I can hit Enter, and autocomplete will change my line to console.log. However, I would also like autocomplete to add parentheses. This question was already asked using the Go programming language. I tried adding js.useCodeSnippetsOnFunctionSuggest as well as javascript.useCodeSnippetsOnFunctionSuggest. Neither of these work. I also tried useCodeSnippetsOnMethodSuggest as suggested here, but that didn't work either. What am I doing wrong?
I fixed this by searching for "Complete Function Calls" in VS Code's settings, and checking JavaScript > Suggest: Complete Function Calls. Thanks Mark for the suggestion.

Is there any plugins of VSCode for angular1.x to "go-to-definition"?

I used to code using webstorm. and it could go to definition simply by pressing ctrl and click the dropdown options.
angular2+ using typescript and supported by VSCode itself already.
anyone's help are appreciated

Creating a VSCode extension for the search blade

I'd like to create a VSCode extension that would allow me to display the search results of global search (ctrl shift f) in a tree view just like webstorm does it.
Unfortunately didn't find any extensions that would do similar.
Can someone point me in the right direction?
So it turned out that it's not possible, I opened a feature request
feature request
on their github

Notepad++ macro not working correctly

I have the TextFX plugin, and one of its functions is convert text to proper case.
I used the shortcut mapper and set the shortcut in the plugin commands tab.
The shortcut works without an issue but when I record it as a macro I get something that looks more like a serialized export.
Can anyone help me get this working?
Cheers