Neutron Dev
Neutron Dev
  • 156
  • 919 330
VS Code: Persist Search History
In this video, we're going to explore the search history persistence feature.
📝Article: neutrondev.com/persist-search-history-in-vs-code/
📧 Sign up for my newsletter to get zero-cost content right at your fingertips
Newsletter: neutrondev.com/newsletter/
💫 Table of Content 💫
00:00 - Intro
00:47 - How the search history works
02:04 - Global Search vs Editor Search
02:21 - Disable Editor Search History
03:40 - Thanks for your support 💜
🔗 You can also find me on 🔗
Site: neutrondev.com/
GitHub: github.com/Tynael
Daily.dev: app.daily.dev/squads/neutrondevguides
BlueSky: bsky.app/profile/neutrondev.bsky.social
#vscode
Переглядів: 44

Відео

VS Code: Hide Back/Forward Buttons in the Title Area
Переглядів 9128 днів тому
If you like to keep the title area tidy, you can now hide the back and forward buttons. 📝Article: neutrondev.com/hide-back-forward-buttons-in-the-title-area-in-vs-code/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:12 - What are the Back/Forward Buttons For? 01:10 - Right-click the title...
Hide History Restored Message in VS Code Terminal
Переглядів 11028 днів тому
In this video, I'll show you how to stop the "History restored" message from appearing in the integrated Git Bash terminal in VS Code. 📝Article: neutrondev.com/hide-history-restored-message-in-vs-code-terminal/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:07 - Terminal Session & History...
Remove MINGW64 from Git Bash Terminal on Windows
Переглядів 80Місяць тому
In this step-by-step video, I’ll explain MINGW64, why it shows up by default, and how to remove it to save some visual space. 📝Article: neutrondev.com/remove-mingw64-from-git-bash-on-windows/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:18 - What is MINGW64? 01:10 - Remove MINGW64 text ...
Change Git Bash Launch Position on Windows
Переглядів 80Місяць тому
I'll show you how to change the Git Bash launch position and set it exactly where you want it on the screen. 📝Article: neutrondev.com/change-git-bash-launch-position-on-windows/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:33 - Check Git Bash’s emulator 02:29 - MinTTY 03:54 - Windows’ C...
Change Terminal Position in VS Code
Переглядів 71Місяць тому
In this step-by-step tutorial, I'll show you 3 ways you can easily move it to the other sides of the screen. 📝Article: neutrondev.com/change-terminal-position-vs-code/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:13 - Click to Reposition the Terminal 00:47 - Run Command to Change the Te...
How to Efficiently Check if a Record Exists in Laravel
Переглядів 392 місяці тому
In this video, I explain how to greatly improve the performance when checking if a record exists in the database. 📝Article: neutrondev.com/how-to-efficiently-check-if-a-record-exists/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:20 - The database 00:45 - count() greater than 0 03:18 - e...
Laravel Tip: Set Default Timestamps in Migrations (created_at & updated_at)
Переглядів 1183 місяці тому
In this guide, I will show you how to set the default value of a timestamp column to the current timestamp in a Laravel migration. 📝Article: neutrondev.com/how-to-set-default-timestamp-values-in-laravel-migrations/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:10 - The problem 02:22 - Se...
How to Fix Delete 'CR' eslint(prettier/prettier) Error (4 Ways)
Переглядів 5593 місяці тому
In this video, I will explain why this "Delete 'CR'" error occurs and provide some ways you can fix it. 📝Article: neutrondev.com/fix-delete-cr-eslintprettier-prettier-error/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:09 - What is "Delete 'CR' eslint(prettier/prettier)" error 00:40 - R...
VS Code: Set Tab Size per File Type
Переглядів 4804 місяці тому
The default tab size is 4 spaces in VS Code. You'll need to change some settings if you want different tab sizes for other file types. I’ll show you how in this video. 📝Article: neutrondev.com/vs-code-set-tab-size-per-file-type/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 💫 Table of Content 💫 00:00 - Intro 00:31 - editor.d...
VS Code: Disable Auto File Open on Drag and Drop
Переглядів 1055 місяців тому
Find out how to disable the auto file open on drag and drop in VS Code. 📝Article: neutrondev.com/vs-code-disable-auto-file-open-on-drag-and-drop/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 🔗 You can also find me on 🔗 GitHub: github.com/Tynael Site: neutrondev.com/ #vscode
Set Default Browser in VS Code
Переглядів 2 тис.5 місяців тому
Find out how to set a default browser of your choice in VS Code. 📝Article: neutrondev.com/set-default-browser-in-vs-code/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 🔗 You can also find me on 🔗 GitHub: github.com/Tynael Site: neutrondev.com/ #vscode
Force All API Requests to Accept JSON with Laravel
Переглядів 1165 місяців тому
In this tutorial, I'll show you how to enforce the 'Accept: application/json' header for client requests, and send an error message if it's missing. This method can help you in standardizing your API responses. 📝Article: neutrondev.com/force-all-api-requests-to-accept-json/ 💫 Table of Content 💫 00:00 - Intro 00:34 - Create a Middleware 02:16 - Use Middleware on an API namespace 03:47 - Use Midd...
Lift Your Spirits with Laravel
Переглядів 985 місяців тому
Inspire or motivate yourself with quotes directly in the command line while working with Laravel. 📝Article: neutrondev.com/lift-your-spirits-with-laravel/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 🔗 You can also find me on 🔗 GitHub: github.com/Tynael Site: neutrondev.com/ #laravel #artisan
How to Mark Database Records as Deleted
Переглядів 1115 місяців тому
I use this approach to mark a database record as deleted in 99% of cases. 📝Article: neutrondev.com/how-to-mark-database-records-as-deleted/ 📧 Sign up for my newsletter to get zero-cost content right at your fingertips Newsletter: neutrondev.com/newsletter/ 🔗 You can also find me on 🔗 GitHub: github.com/Tynael Site: neutrondev.com/ #database
Fix Git Bash Flicker in Windows Terminal
Переглядів 6156 місяців тому
Fix Git Bash Flicker in Windows Terminal
Read First or Last N Lines from File
Переглядів 1016 місяців тому
Read First or Last N Lines from File
How to Clear the Global npx Cache
Переглядів 2147 місяців тому
How to Clear the Global npx Cache
Database GUI for DDEV on WSL2
Переглядів 3737 місяців тому
Database GUI for DDEV on WSL2
VS Code: Always Show Editor Actions
Переглядів 2137 місяців тому
VS Code: Always Show Editor Actions
VS Code: Multi Select Editor Tabs
Переглядів 2257 місяців тому
VS Code: Multi Select Editor Tabs
VS Code: Middle-Click to Paste into the Terminal
Переглядів 5467 місяців тому
VS Code: Middle-Click to Paste into the Terminal
VS Code: Quick Search 🔍
Переглядів 5528 місяців тому
VS Code: Quick Search 🔍
VS Code: Minimap Section Headers
Переглядів 1,5 тис.8 місяців тому
VS Code: Minimap Section Headers
VS Code: Add Comma to Each Line
Переглядів 1,8 тис.8 місяців тому
VS Code: Add Comma to Each Line
VS Code: Keep Editors Open
Переглядів 8648 місяців тому
VS Code: Keep Editors Open
Disable all CSS on a Page with JavaScript
Переглядів 2269 місяців тому
Disable all CSS on a Page with JavaScript
Detect CAPS LOCK with JavaScript
Переглядів 1679 місяців тому
Detect CAPS LOCK with JavaScript
VS Code: Locked Scrolling
Переглядів 2,2 тис.9 місяців тому
VS Code: Locked Scrolling
VS Code: Hide Indent Lines in Explorer
Переглядів 1,4 тис.9 місяців тому
VS Code: Hide Indent Lines in Explorer