{"id":520,"date":"2021-04-29T10:26:27","date_gmt":"2021-04-29T09:26:27","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=520"},"modified":"2021-05-20T10:15:28","modified_gmt":"2021-05-20T09:15:28","slug":"11-vscode-shortcuts-you-should-be-using","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/","title":{"rendered":"11 VSCode Shortcuts You Should be Using"},"content":{"rendered":"\n<p>Finding an alternative and, at the same time, accelerated way of performing both simple and complex actions as a software developer can be rewarding. And with <a href=\"https:\/\/code.visualstudio.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">VSCode<\/a> shortcuts, we are not disappointed. <\/p>\n\n\n\n<p>With an invocation of just a few keystrokes, you can increase your productivity and significantly reduce the time taken for your project development.<\/p>\n\n\n\n<p>Here are 11 VSCode shortcuts you can start using right away:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-id-and-class-attributes\">1. ID And Class Attributes<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-div-header\"><strong><span class=\"has-inline-color has-vivid-red-color\">div#header<\/span><\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;div id=\"header\"&gt;&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-div-header-1\"><span class=\"has-inline-color has-vivid-red-color\">div.header<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;div class=\"header\"&gt;&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-form-search-size\"><span class=\"has-inline-color has-vivid-red-color\">form#search.size<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;form id=\"search\" class=\"size\"&gt;&lt;\/form&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-p-class1-class2-class3\"><span class=\"has-inline-color has-vivid-red-color\">p.class1.class2.class3<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;p class=\"class1 class2 class3\"&gt;&lt;\/p&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-text\">2. Text<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-a-submit\"><span class=\"has-inline-color has-vivid-red-color\">a{Submit}<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;a href=\"\"&gt;Submit&lt;\/a&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-3-sibling\">3. Sibling<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-div-p-a\"><span class=\"has-inline-color has-vivid-red-color\">div+p+a<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;div&gt;&lt;\/div&gt;\n&lt;p&gt;&lt;\/p&gt;\n&lt;a&gt;&lt;\/a&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-4-child\">4. Child<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-nav-ul-li\"><span class=\"has-inline-color has-vivid-red-color\">nav&gt;ul&gt;li<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;nav&gt;\n&lt;ul&gt;\n&lt;li&gt;&lt;\/li&gt;\n&lt;\/ul&gt;\n&lt;\/nav&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-5-multiplication\">5. Multiplication<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-ul-li-2\"><span class=\"has-inline-color has-vivid-red-color\">ul&gt;li*2<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;ul&gt;\n&lt;li&gt;&lt;\/li&gt;\n&lt;li&gt;&lt;\/li&gt;\n&lt;\/ul&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-6-numbering-items\">6. Numbering Items<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-ul-li-item-6\"><span class=\"has-inline-color has-vivid-red-color\">ul&gt;li.item$*6<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;ul&gt;\n&lt;li class=\"item1\"&gt;&lt;\/li&gt;\n&lt;li class=\"item2\"&gt;&lt;\/li&gt;\n&lt;li class=\"item3\"&gt;&lt;\/li&gt;\n&lt;li class=\"item4\"&gt;&lt;\/li&gt;\n&lt;li class=\"item5\"&gt;&lt;\/li&gt;\n&lt;li class=\"item6\"&gt;&lt;\/li&gt;\n&lt;\/ul&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-7-grouping-tags\">7. Grouping Tags<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-main-header-ul-li-3-a-footer-img\"><span class=\"has-inline-color has-vivid-red-color\">main&gt;(header&gt;ul&gt;li*3&gt;a)+footer&gt;img<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;main&gt;\n&lt;header&gt;\n&lt;ul&gt;\n&lt;li&gt;&lt;a href=\"\"&gt;&lt;\/a&gt;&lt;\/li&gt;\n&lt;li&gt;&lt;a href=\"\"&gt;&lt;\/a&gt;&lt;\/li&gt;\n&lt;li&gt;&lt;a href=\"\"&gt;&lt;\/a&gt;&lt;\/li&gt;\n&lt;\/ul&gt;\n&lt;\/header&gt;\n&lt;footer&gt;\n&lt;img src=\"\" \/&gt;\n&lt;\/footer&gt;\n&lt;\/main&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-8-implicit-tag-names\">8. Implicit Tag Names<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-ul-class\"><span class=\"has-inline-color has-vivid-red-color\">ul&gt;.class<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;ul&gt;\n&lt;li class=\"class\"&gt;&lt;\/li&gt;\n&lt;\/ul&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-table-row-col\"><span class=\"has-inline-color has-vivid-red-color\">table&gt;.row&gt;.col<\/span><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;table&gt;\n&lt;tr class=\"row\"&gt;\n&lt;td class=\"col\"&gt;&lt;\/td&gt;\n&lt;\/tr&gt;\n&lt;\/table&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-9-comments\">9. Comments<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-for-windows-ctrl\">For Windows: <span class=\"has-inline-color has-vivid-red-color\">CTRL + ?<\/span><\/h3>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-for-mac-command\">For Mac:<span class=\"has-inline-color has-vivid-red-color\"> COMMAND + ?<\/span><\/h3>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-10-duplicate-code-line\">10. Duplicate Code Line<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-windows-shift-ctrl-downarrrow\">Windows: <span class=\"has-inline-color has-vivid-red-color\">SHIFT + CTRL + DownArrrow<\/span><\/h3>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-for-mac-shift-command-downarrow\">For Mac: <span class=\"has-inline-color has-vivid-red-color\">SHIFT + COMMAND + DownArrow<\/span><\/h3>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-11-create-new-terminal-instance\">11. Create New Terminal Instance<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-windows-ctrl-shift\">Windows: <strong><span class=\"has-inline-color has-vivid-red-color\">CTRL+SHIFT+`<\/span><\/strong>&nbsp;<\/h3>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-mac-command-shift\">Mac: <strong><span class=\"has-inline-color has-vivid-red-color\">COMMAND+SHIFT+`<\/span><\/strong>&nbsp;<\/h3>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>It is true that shortcuts may not always be the best way to do things, but these VSCode shortcuts will help improve both the speed and accuracy of your work. Don&#8217;t worry if you don&#8217;t remember all of them once. With constant use, you will get used them.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https:\/\/codeflarelimited.com\/blog\/7-javascript-shortcuts-you-should-be-using-in-next-project\/\" target=\"_blank\" rel=\"noreferrer noopener\">Check out these Awesome Javascript Shortcuts<\/a><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Finding an alternative and, at the same time, accelerated way of performing both simple and complex actions as<\/p>\n","protected":false},"author":1,"featured_media":522,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[24],"tags":[],"class_list":["post-520","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>11 VSCode Shortcuts You Should be Using<\/title>\n<meta name=\"description\" content=\"You can increase your productivity and significantly reduce the time taken for your project development. Here are 11 VSCode shortcuts\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"11 VSCode Shortcuts You Should be Using\" \/>\n<meta property=\"og:description\" content=\"You can increase your productivity and significantly reduce the time taken for your project development. Here are 11 VSCode shortcuts\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-29T09:26:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-20T09:15:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/04\/Untitled-Design.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"753\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"11 VSCode Shortcuts You Should be Using\",\"datePublished\":\"2021-04-29T09:26:27+00:00\",\"dateModified\":\"2021-05-20T09:15:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/\"},\"wordCount\":220,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Untitled-Design.jpg\",\"articleSection\":[\"programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/\",\"name\":\"11 VSCode Shortcuts You Should be Using\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Untitled-Design.jpg\",\"datePublished\":\"2021-04-29T09:26:27+00:00\",\"dateModified\":\"2021-05-20T09:15:28+00:00\",\"description\":\"You can increase your productivity and significantly reduce the time taken for your project development. Here are 11 VSCode shortcuts\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Untitled-Design.jpg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Untitled-Design.jpg\",\"width\":1200,\"height\":753,\"caption\":\"VSCode shortcuts\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/11-vscode-shortcuts-you-should-be-using\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"programming\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/programming\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"11 VSCode Shortcuts You Should be Using\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"11 VSCode Shortcuts You Should be Using","description":"You can increase your productivity and significantly reduce the time taken for your project development. Here are 11 VSCode shortcuts","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:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/","og_locale":"en_US","og_type":"article","og_title":"11 VSCode Shortcuts You Should be Using","og_description":"You can increase your productivity and significantly reduce the time taken for your project development. Here are 11 VSCode shortcuts","og_url":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2021-04-29T09:26:27+00:00","article_modified_time":"2021-05-20T09:15:28+00:00","og_image":[{"width":1200,"height":753,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/04\/Untitled-Design.jpg","type":"image\/jpeg"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"11 VSCode Shortcuts You Should be Using","datePublished":"2021-04-29T09:26:27+00:00","dateModified":"2021-05-20T09:15:28+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/"},"wordCount":220,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/04\/Untitled-Design.jpg","articleSection":["programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/","url":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/","name":"11 VSCode Shortcuts You Should be Using","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/04\/Untitled-Design.jpg","datePublished":"2021-04-29T09:26:27+00:00","dateModified":"2021-05-20T09:15:28+00:00","description":"You can increase your productivity and significantly reduce the time taken for your project development. Here are 11 VSCode shortcuts","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/04\/Untitled-Design.jpg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/04\/Untitled-Design.jpg","width":1200,"height":753,"caption":"VSCode shortcuts"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/11-vscode-shortcuts-you-should-be-using\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"programming","item":"https:\/\/codeflarelimited.com\/blog\/programming\/"},{"@type":"ListItem","position":3,"name":"11 VSCode Shortcuts You Should be Using"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/04\/Untitled-Design.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/520","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=520"}],"version-history":[{"count":3,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/520\/revisions"}],"predecessor-version":[{"id":597,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/520\/revisions\/597"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/522"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=520"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=520"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=520"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}