{"id":153,"date":"2025-04-20T16:03:05","date_gmt":"2025-04-20T16:03:05","guid":{"rendered":"https:\/\/www.abishekb.com\/blog\/?p=153"},"modified":"2025-04-20T16:03:06","modified_gmt":"2025-04-20T16:03:06","slug":"vs-code-hacks-thatll-save-you-hours-every-week","status":"publish","type":"post","link":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week","title":{"rendered":"VS Code Hacks That\u2019ll Save You Hours Every Week"},"content":{"rendered":"\n<p>If you\u2019re a developer, you probably live inside <strong><a href=\"https:\/\/code.visualstudio.com\/\">Visual Studio Code (VS Code)<\/a><\/strong>. It\u2019s fast, lightweight, and incredibly powerful, especially once you know a few insider tricks. In this post, we\u2019ll explore <strong>VS Code hacks<\/strong> that can seriously boost your workflow and help you reclaim time you didn\u2019t even know you were losing. Whether you\u2019re a beginner or a seasoned pro, these tips can make a huge difference. So let\u2019s get into it!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. <strong>Master the Keyboard Shortcuts<\/strong><\/h2>\n\n\n\n<p>Let\u2019s be honest\u2014mouse clicks slow you down. One of the fastest ways to level up in VS Code is by learning its <strong>keyboard shortcuts<\/strong>. A few must-know ones:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>Ctrl + P<\/code>: Quickly open files<\/li>\n\n\n\n<li><code>Ctrl + Shift + L<\/code>: Select all occurrences of a word<\/li>\n\n\n\n<li><code>Alt + \u2191 \/ \u2193<\/code>: Move lines up or down<\/li>\n\n\n\n<li><code>Ctrl + \/<\/code>: Comment or uncomment code<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udca1 <em>Pro tip:<\/em> Customize your own shortcuts via <code>File > Preferences > Keyboard Shortcuts<\/code>.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\u201cGive me six hours to chop down a tree and I will spend the first four sharpening the axe.\u201d <\/p>\n\n\n\n<p>\u2013 Probably Abraham Lincoln, if he used VS Code.<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">2. <strong>Multi-Cursor Magic<\/strong><\/h2>\n\n\n\n<p>This one feels like a superpower. Hold down <code>Alt<\/code> (or <code>Option<\/code> on Mac) and click to place multiple cursors. You can now type or edit <strong>multiple lines at once<\/strong>. This pairs perfectly with reusable patterns or template code\u2014especially if you\u2019re working on something like <a class=\"\">Centralized Logging in GoLang<\/a> and want consistent formatting.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Related Tip:<\/h3>\n\n\n\n<p>Use <code>Ctrl + D<\/code> to select the next instance of a word and edit it simultaneously.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. <strong>Zen Mode and Focus<\/strong><\/h2>\n\n\n\n<p>Feeling overwhelmed by all the panels, sidebars, and tabs? Enter <strong>Zen Mode<\/strong>. Hit <code>Ctrl + K Z<\/code> to clear out everything but your code. This hack is perfect when you need deep focus\u2014like when you\u2019re cranking through a sprint or navigating through <a class=\"\">Crunch Time<\/a>.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Think of Zen Mode as VS Code\u2019s version of <em>\u201cDo Not Disturb.\u201d<\/em><\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">4. <strong>Extensions That Supercharge Your Workflow<\/strong><\/h2>\n\n\n\n<p>Extensions turn VS Code from great to amazing. Here are some that\u2019ll instantly upgrade your dev life:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Prettier<\/strong> \u2013 for automatic code formatting<\/li>\n\n\n\n<li><strong>Live Server<\/strong> \u2013 real-time browser preview<\/li>\n\n\n\n<li><strong>GitLens<\/strong> \u2013 better Git history and insights<\/li>\n\n\n\n<li><strong>Path Intellisense<\/strong> \u2013 auto-complete for file paths<\/li>\n\n\n\n<li><strong>CodeSnap<\/strong> \u2013 share beautiful code snippets<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udd17 <a href=\"https:\/\/www.abishekb.com\/blog\/ai\/top-10-ai-tools-every-developer-should-know-in-2025\">Interested in the future of dev tools? Check out Top 10 AI Tools Every Developer Should Know in 2025<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">5. <strong>Customize Your VS Code Settings<\/strong><\/h2>\n\n\n\n<p>Make VS Code yours. From themes to auto-save, customizing settings is a low-effort, high-reward move. Example: Turn on <strong>auto-save<\/strong> by adding this to your settings:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">jsonCopyEdit<code>\"files.autoSave\": \"afterDelay\"\n<\/code><\/pre>\n\n\n\n<p>This small change adds up, especially during intense projects like transitioning from a <a class=\"\">Developer to Architect<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">6. <strong>Use Snippets to Code Faster<\/strong><\/h2>\n\n\n\n<p>Tired of typing the same chunks of code over and over? Create <strong>custom snippets<\/strong> in VS Code. Go to: <code>File &gt; Preferences &gt; User Snippets<\/code> Or try built-in ones like <code>for<\/code> \u2192 tab, and voil\u00e0! A full <code>for<\/code> loop appears. For scalable coding patterns, especially in systems like <a class=\"\">Serverless Architecture<\/a>, snippets are golden.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">7. <strong>Live Server for Real-Time Feedback<\/strong><\/h2>\n\n\n\n<p>If you\u2019re working with HTML\/CSS\/JS, install <strong>Live Server<\/strong>. It spins up a local dev server and auto-refreshes your browser when you save changes. No more manually refreshing like it\u2019s 2003.<br>\ud83d\udd17 <a href=\"https:\/\/www.abishekb.com\/blog\/cloud\/serverless-vs-containers-which-option-is-best-for-your-application\">Want to know if Serverless is right for your next project? Read this comparison<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">8. <strong>Terminal Tricks Inside VS Code<\/strong><\/h2>\n\n\n\n<p>No need to bounce between VS Code and your system terminal. Just hit <code>Ctrl + `<\/code> to open an integrated terminal. You can run commands, install packages, and even use Git\u2014all without leaving the editor. Bonus: Split terminals with <code>Ctrl + \\<\/code> to multitask like a boss.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd17 <strong>Internal Links<\/strong><\/h2>\n\n\n\n<p>Explore more useful dev reads:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.abishekb.com\/blog\/ai\/top-10-ai-tools-every-developer-should-know-in-2025\">Top 10 AI Tools for Developers in 2025<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.abishekb.com\/blog\/tips-ideas\/crunch-time-for-developers-how-to-survive\">Crunch Time For Developers \u2013 How To Survive \u26a1<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.abishekb.com\/blog\/guide\/developer-to-architect-from-writing-code-to-designing-systems\">Developer to Architect: From Writing Code to Designing Systems<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\u2753 FAQ<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What are the best VS Code hacks for developers?<\/h3>\n\n\n\n<p>Some top hacks include multi-cursor editing, Zen Mode, Live Server, snippets, and mastering keyboard shortcuts.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I speed up my workflow in VS Code?<\/h3>\n\n\n\n<p>Use built-in shortcuts, install productivity extensions, and customize your settings for maximum efficiency.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83e\udde0 Final Thoughts<\/h2>\n\n\n\n<p>VS Code is already an incredible editor, but once you unlock these hacks, you\u2019ll wonder how you ever coded without them. From <strong>multi-cursor editing<\/strong> to <strong>custom snippets<\/strong> and <strong>Zen Mode<\/strong>, these tips aren\u2019t just cool\u2014they\u2019re practical. As the saying goes, \u201cWork smarter, not harder.\u201d Or in this case, code smarter. Now go forth and save yourself hours every week. Your future self (and your wrists) will thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019re a developer, you probably live inside Visual Studio Code (VS Code). It\u2019s fast, lightweight, and incredibly powerful, especially once you know a few insider tricks. In this post,&hellip;<\/p>\n","protected":false},"author":1,"featured_media":154,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[31,7,27],"tags":[],"class_list":["post-153","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dev-life","category-guide","category-tips-ideas"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>VS Code Hacks That\u2019ll Save You Hours Every Week - Abishek B<\/title>\n<meta name=\"description\" content=\"Boost your coding speed with these time-saving VS Code hacks, shortcuts, and extensions every developer should know.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VS Code Hacks That\u2019ll Save You Hours Every Week - Abishek B\" \/>\n<meta property=\"og:description\" content=\"Boost your coding speed with these time-saving VS Code hacks, shortcuts, and extensions every developer should know.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week\" \/>\n<meta property=\"og:site_name\" content=\"Abishek B\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-20T16:03:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-20T16:03:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1536\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Abishek B\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abishek B\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week\"},\"author\":{\"name\":\"Abishek B\",\"@id\":\"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284\"},\"headline\":\"VS Code Hacks That\u2019ll Save You Hours Every Week\",\"datePublished\":\"2025-04-20T16:03:05+00:00\",\"dateModified\":\"2025-04-20T16:03:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week\"},\"wordCount\":715,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284\"},\"image\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp\",\"articleSection\":[\"Dev Life\",\"Guide\",\"Tips &amp; Ideas\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week\",\"url\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week\",\"name\":\"VS Code Hacks That\u2019ll Save You Hours Every Week - Abishek B\",\"isPartOf\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp\",\"datePublished\":\"2025-04-20T16:03:05+00:00\",\"dateModified\":\"2025-04-20T16:03:06+00:00\",\"description\":\"Boost your coding speed with these time-saving VS Code hacks, shortcuts, and extensions every developer should know.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage\",\"url\":\"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp\",\"contentUrl\":\"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp\",\"width\":1536,\"height\":1024,\"caption\":\"A clean digital graphic featuring the VS Code logo and icons of a stopwatch, lightbulb, gear, and code snippet on a dark blue background. The bold white text reads \\\"VS Code Hacks That\u2019ll Save You Hours Every Week,\\\" emphasizing productivity and efficiency for developers.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.abishekb.com\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VS Code Hacks That\u2019ll Save You Hours Every Week\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.abishekb.com\/blog\/#website\",\"url\":\"https:\/\/www.abishekb.com\/blog\/\",\"name\":\"Abishek B\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.abishekb.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284\",\"name\":\"Abishek B\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2024\/12\/logo.png\",\"contentUrl\":\"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2024\/12\/logo.png\",\"width\":196,\"height\":196,\"caption\":\"Abishek B\"},\"logo\":{\"@id\":\"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/blog.abishekb.com\"],\"url\":\"https:\/\/www.abishekb.com\/blog\/author\/suna\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"VS Code Hacks That\u2019ll Save You Hours Every Week - Abishek B","description":"Boost your coding speed with these time-saving VS Code hacks, shortcuts, and extensions every developer should know.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week","og_locale":"en_US","og_type":"article","og_title":"VS Code Hacks That\u2019ll Save You Hours Every Week - Abishek B","og_description":"Boost your coding speed with these time-saving VS Code hacks, shortcuts, and extensions every developer should know.","og_url":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week","og_site_name":"Abishek B","article_published_time":"2025-04-20T16:03:05+00:00","article_modified_time":"2025-04-20T16:03:06+00:00","og_image":[{"width":1536,"height":1024,"url":"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp","type":"image\/webp"}],"author":"Abishek B","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abishek B","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#article","isPartOf":{"@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week"},"author":{"name":"Abishek B","@id":"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284"},"headline":"VS Code Hacks That\u2019ll Save You Hours Every Week","datePublished":"2025-04-20T16:03:05+00:00","dateModified":"2025-04-20T16:03:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week"},"wordCount":715,"commentCount":0,"publisher":{"@id":"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284"},"image":{"@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage"},"thumbnailUrl":"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp","articleSection":["Dev Life","Guide","Tips &amp; Ideas"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week","url":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week","name":"VS Code Hacks That\u2019ll Save You Hours Every Week - Abishek B","isPartOf":{"@id":"https:\/\/www.abishekb.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage"},"image":{"@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage"},"thumbnailUrl":"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp","datePublished":"2025-04-20T16:03:05+00:00","dateModified":"2025-04-20T16:03:06+00:00","description":"Boost your coding speed with these time-saving VS Code hacks, shortcuts, and extensions every developer should know.","breadcrumb":{"@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#primaryimage","url":"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp","contentUrl":"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2025\/04\/vs-code-hacks-that-ll-save-you-hours-every-week.webp","width":1536,"height":1024,"caption":"A clean digital graphic featuring the VS Code logo and icons of a stopwatch, lightbulb, gear, and code snippet on a dark blue background. The bold white text reads \"VS Code Hacks That\u2019ll Save You Hours Every Week,\" emphasizing productivity and efficiency for developers."},{"@type":"BreadcrumbList","@id":"https:\/\/www.abishekb.com\/blog\/guide\/vs-code-hacks-thatll-save-you-hours-every-week#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.abishekb.com\/blog"},{"@type":"ListItem","position":2,"name":"VS Code Hacks That\u2019ll Save You Hours Every Week"}]},{"@type":"WebSite","@id":"https:\/\/www.abishekb.com\/blog\/#website","url":"https:\/\/www.abishekb.com\/blog\/","name":"Abishek B","description":"Blog","publisher":{"@id":"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.abishekb.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/e8812282e0ea991db3641e41244f5284","name":"Abishek B","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2024\/12\/logo.png","contentUrl":"https:\/\/www.abishekb.com\/blog\/wp-content\/uploads\/2024\/12\/logo.png","width":196,"height":196,"caption":"Abishek B"},"logo":{"@id":"https:\/\/www.abishekb.com\/blog\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/blog.abishekb.com"],"url":"https:\/\/www.abishekb.com\/blog\/author\/suna"}]}},"_links":{"self":[{"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/posts\/153","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/comments?post=153"}],"version-history":[{"count":1,"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/posts\/153\/revisions"}],"predecessor-version":[{"id":155,"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/posts\/153\/revisions\/155"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/media\/154"}],"wp:attachment":[{"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/media?parent=153"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/categories?post=153"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.abishekb.com\/blog\/wp-json\/wp\/v2\/tags?post=153"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}