[#Script #Coding] Oh No Vim in VS Code

Oh No Vim in VS Code

By codeSTACKr
Published: Mar 29, 2023


codeSTACKr Become A VS Code SuperHero Today: https://vsCodeHero.com
Join my Discord developer community: https://discord.gg/A9CnsVzzkZ

VIM, oh no!
How to exit vim.


Tools I use:
codeSTACKr Theme: https://marketplace.visualstudio.com/items?itemName=codestackr.codestackr-theme
STACKr Code Font (Exclusive to my VS Code Course – https://vsCodeHero.com)
SuperHero Extension Pack: https://marketplace.visualstudio.com/items?itemName=codeSTACKr.superhero-extensions


Show support!
PayPal: https://paypal.me/codeSTACKr


Watch Next:
Playlist: Web Development For Beginners – https://www.youtube.com/watch?v=Ez4yHS2dsN8&list=PLkwxH9e_vrAJ0WbEsFA9W3I1W-g_BTsbt


Connect With codeSTACKr:
Website: https://www.codestackr.com
Twitter: https://twitter.com/codeSTACKr
Instagram: https://instagram.com/codeSTACKr
Facebook: https://facebook.com/codeSTACKr

[#Script #Coding] Best Shortcut You Didn’t Know!!

Best Shortcut You Didn’t Know!!

By codeSTACKr
Published: Feb 15, 2023


codeSTACKr Code Tip of the Day
Do you ever need to go back up to some code you wrote earlier to copy a piece of it, then have to figure out where you were at just before that?

Just press Alt+LeftArrow, you’ll go right back to that previous cursor location.

You’re welcome!


Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ





[#Script #Coding] Open VS Code from Finder in macOS

Open VS Code from Finder in macOS

By codeSTACKr
Published: Mar 17, 2023


codeSTACKr Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ

Want to quickly open a file or folder in VS Code from Finder in MacOS?

Add a quick action:
– Open the Shortcuts App
– Select “Quick Actions”
– Add a new action
– Change “Receive Any” to “Receive Files and Folders”
– From the right menu under Categories, choose Scripting and add “Run Shell Script”

Permissions may need to be added.
– Enter this script: open -n -b “com.microsoft.VSCode” –args “$*”
– For the Input choose Folder as the Type and Get the File Path
– Pass input: as arguments
– Name the Quick Action “Open with Code”

Now, when you right-click any folder or file in Finder, you’ll get this quick action to open it in VS Code.





[#Script #Coding] Best VS Code Feature! Never Lose Your Place!

Best VS Code Feature! Never Lose Your Place!

By codeSTACKr
Published: Jan 30, 2023


codeSTACKr Become A VS Code SuperHero Today: https://vsCodeHero.com
Join my Discord developer community: https://discord.gg/A9CnsVzzkZ

Code Tip of the Day
When you work with large chunks of code, it’s easy to get lost.
With sticky scrolling enabled, the top of the editor will show you your current scope.
And you can click on the top layer to go back to the top of that section.
It works in many file types like HTML, JavaScript/TypeScript, CSS, md, package.json, and many more.


Tools I use:
codeSTACKr Theme: https://marketplace.visualstudio.com/items?itemName=codestackr.codestackr-theme
STACKr Code Font (Exclusive to my VS Code Course – https://vsCodeHero.com)
SuperHero Extension Pack: https://marketplace.visualstudio.com/items?itemName=codeSTACKr.superhero-extensions


Show support!
PayPal: https://paypal.me/codeSTACKr


Watch Next:
Playlist: Web Development For Beginners – https://www.youtube.com/watch?v=Ez4yHS2dsN8&list=PLkwxH9e_vrAJ0WbEsFA9W3I1W-g_BTsbt


Connect With CodeSTACKr:
Website: https://www.codestackr.com
Twitter: https://twitter.com/codeSTACKr
Instagram: https://instagram.com/codeSTACKr
Facebook: https://facebook.com/codeSTACKr

[#Script #Coding] Best VS Code Extension for REST API – No More Postman

Best VS Code Extension for REST API – No More Postman

By codeSTACKr
Published: Dec 23, 2022


codeSTACKr Thunder Client is a lightweight Rest API for VS Code.

It’s a great alternative to Postman or Insomnia since you can run your queries directly from VS Code instead of yet another application.

After you install the extension, you’ll see a new tab on the sidebar.

From there, you can create a new request. Enter the URL along with any the type of request it is and any payloads. Then run it.

You’ll see the results right here inside VS Code!


Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ





[#Script #Coding] STOP Renaming Things in VS Code This Way!

STOP Renaming Things in VS Code This Way!

By codeSTACKr
Published: Feb 06, 2023


codeSTACKr Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ

VS Code Tip of the Day
How do you rename functions, variables, classes, and other symbols in visual studio code?
Do you go one by one renaming them? I hope not.
Do you use the find and replace menu to replace them all? That’s better.
Maybe you use Ctrl+D or Ctrl+Shift+L to select all occurrences of that word. That could work, but it’s still not the easiest way.
All you have to do is put your cursor on the symbol that you want to rename and press F2, then rename it. That’s it. It will automatically be renamed everywhere that it’s referenced.
You’re welcome!





[#Script #Coding] Pimp my Font – VS Code Style

Pimp my Font – VS Code Style

By codeSTACKr
Published: Feb 17, 2023


codeSTACKr
Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ

Code Tip of the Day:
Font ligatures are special characters that combine multiple characters into a single symbol.

They can help your overall coding experience and make your code more readable and elegant, especially when it comes to symbol like not equal, greater than or equal, and less than or equal.

But they are definitely up to user preference. Some people love them, and some hate them. Personally, I like them.

In Visual Studio Code, you can easily enable font ligatures by editing the settings.json file, and adding `”editor.fontLigatures”: true`.

You will also need to use a font that supports ligatures because not all do.

Some popular fonts like Fira Code, Cascadia Code, and Hasklig which extends Source Code Pro are great coding fonts that have support for ligatures.

And my custom STACKr Code font which is included with my VS Code Hero course has ligature support as well.


Tools I use:


Show support!


Watch Next:


Connect With codeSTACKr:

[#Script #Coding] Pro Tip – Code from Any Device with Remote Tunnels in VS Code

Pro Tip – Code from Any Device with Remote Tunnels in VS Code

By codeSTACKr
Published: Jan 25, 2023


codeSTACKr

    VS Code Tip of the Day

  • Do you know how easy it is to code on any device?
  • Account menu – Turn on remote tunnel access.
  • Sign in with GitHub if prompted.
  • Creates a secure tunnel directly to your machine.
  • Copy / Paste this URL anywhere!
  • Literally, anything with a browser.
  • Access your local machine as if you were at it.
  • You can even run terminal commands!

Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ





[#Script #Coding] Best VS Code Time Saver!!

Best VS Code Time Saver!!

By codeSTACKr
Published: Jan 09, 2023


codeSTACKr Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ

If you’re not using Emmet to write HTML markup and CSS, you’re wasting time!
– Create an entire HTML boilerplate with just an exclamation mark.
– Create a header, with an H1, and a paragraph with just a few keystrokes.
– Create a list with 10 items that are all populated with classes and incrementing numbers.
– Quickly add CSS properties

There’s so much that Emmet can do to speed up your workflow!





[#Script #Coding] Best VS Code Extension EVER!!

Best VS Code Extension EVER!!

By codeSTACKr
Published: Dec 30, 2022


codeSTACKr Become A VS Code SuperHero Today: https://vsCodeHero.com

Join my Discord developer community: https://discord.gg/A9CnsVzzkZ

Have you ever tried to change a word everywhere in VS Code that has multiple case variations?

Some are lowercase, some use camel case, and some are all uppercase. It’s a nightmare!

The VS Code extension Multiple cursor case preserve makes it easy!

Let’s say I want to change all of these variables from customer to client.

After you’ve installed the extension, put your cursor on the word you want to change and press Ctrl+Shift+L to select all occurrences of the word.

And just rename it! It will preserve the case of each selection.

You’re welcome!





Proudly powered by WordPress
Creative Commons License
EricBrooks.Com® is licensed under a Creative Commons License.

Disclaimer: The views expressed herein are solely those of Eric Brooks. They do not necessarily reflect those of his employers, friends, contacts, family, or even his pets (though my cat, Puddy, seems to agree with me on many key issues.). In accordance to my terms of use, you hereby acknowledge my right to psychoanalyze you, practice accupuncture, and mock you incessantly with every visit. As the user, you also acknowledge that the author has been legally declared a "Problem Adult" by the Commonwealth of Pennsylvania, and is therefore not responsible for any of his actions. ALSO, the political views and products advertised on this site may/may not reflect the views of Puddy or myself, so please don't take them as an endorsement. We just need to eat.


Connect