/\cYourSearchKeywords
case insensitive
/\CYourSearchKeywords
case sensitive, which is the default behaviour
A few other ideas:
-
\c
can appear anywhere in the pattern, so if you type a pattern and then decide you wanted a case-insensitive search, just add a \c
at the end.
-
add set ignorecase
for case-insensitive searching in my vimrc, and I can use \C
to do a case-sensitive search
-
There's also set smartcase
which will automatically switch to a case-sensitive search if you use any capital letters
- Remember!
set smartcase
applies only when set ignorecase
is already active
Reference
This great article taught me how to use github actions to deploy my side project to my cheap VPS. Many thanks to the author!
Yesterday, I need to replace a string ClassName
with List<ClassName>
many times in a few files, and the ClassName varies. Manually doing it again and again is tedious and mistake prone, which is what I hate. Here's the solution
First, record a macro,
- move cursor on any letter of the target ClassName
- qa
- ysiw>
- Insert
- List
- Esc
- q
Second, replay the macro, move cursor to another occurrence of ClassName,
@a
Third, replay the same macro as many times as you want: move cursor to any other occurrences, simply type
@@
The feeling is so good to let a computer do what you want it to do!
and here's the Reference where I learnt how to use vim macro. TL;DR;
You can simply click the title of this blog to check the reference.
The key is the dotall modifier (?s)
. It helped out me today!
by the way, my final match expression is
rg --pcre2 -U '(?s)\.Initialise\([^,]+,\s*([^,]+),\s*\1(?:,true|false)?\);'
rg is a so fast and so powerful tool in my daily use, I love it!
Reference
Remove those deprecated NuGet packages, use the ASP.NET Core shared framework instead
With the release of .NET Core 3.0, many ASP.NET Core assemblies are no longer published to NuGet as packages. Instead, the assemblies are included in the Microsoft.AspNetCore.App shared framework, which is installed with the .NET Core SDK and runtime installers. For a list of packages no longer being published, see Remove obsolete package references.
As of .NET Core 3.0, projects using the Microsoft.NET.Sdk.Web MSBuild SDK implicitly reference the shared framework. Projects using the Microsoft.NET.Sdk or Microsoft.NET.Sdk.Razor SDK must reference ASP.NET Core to use ASP.NET Core APIs in the shared framework.
To reference ASP.NET Core, add the following element to your project file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</Project>
Reference