Vim Selection Groups

Dec 4, 2023
In Neovim, the scope that regular expression select group is out of this world. Here is a screencast of me making a json object out of just text data.

Table of Content

Click to expand

In Neovim, the scope that regular expression select group is out of this world. Here is a screencast of me making a json object out of just text data. 🧑‍💻

Lets assume this is vim

Neovim has been one of those tool, that I had been procastinating on for majority of my carrer. Now, I have come to embrace it and I am a month old neovim users. You can read more about this here.

My journey to VIM, from 😕 to 😄 _Vim has been throne till my software development. Something that I always ignored and looked away from. Here I would…_blog.stackademic.com

Here our text input follows a pattern. Pattern like of a csv file. Fields are separated by comma ,

We will have to select that and use the find and replace command. The keybinding for that is

:'<,'>s/

You will only need to press :s as :’<,’> comes due to selection done in the visual line mode

The syntax for the find and replace command is

s/<input\_regex>/replacement string/gc

Here, g,c are flags like global means all and c means confirmation. It will ask for prompt

Select groups are those characters that are based upon the values provided in the input selection regular expression.

Here using \v means that we willn’t have to escape brackets. In the above example. the target groups are

(*.), (*.), (*.) -> Everything from beginning till 1st comma, Between 1st and 2nd comma and everything else. We can reference those selection group on the replace part using \1 \2 and \3 in the right side. \0 means everything. It is like the syntax in the awk command. I also used some json like fields to add extra text in the replace side.

If you guessed the replace part, you can see that the output of this must look like some JSON structure. You are right.🥳 So final output looks like this.

Tricks like this has made something more effective in me and I love tricks. You might have some tricks that I may not know. Share me your NeoVim tricks.

I want to find a way to reference registers in the replace part of find and replace. Imagine if we could use register content in replace part. This is what I will be looking into. #neovim #vim #programming

Related Posts

productivity

My journey to VIM, from 😕 to 😄

Vim has been throne till my software development. Something that I always ignored and looked away from. Here I would love to reverse time a by few years and see how my programming journey went and vim has made the journey better making me a more productive software enginner overall.
My journey to VIM, from 😕 to 😄
productivity

I have been optimizing my development productivity

How I enhanced developer productivity with personal tools, bash scripts, aliases and organizational practices
I have been optimizing my development productivity

You may also like

productivity

I have been optimizing my development productivity

How I enhanced developer productivity with personal tools, bash scripts, aliases and organizational practices
I have been optimizing my development productivity
projects

With this rust tool, I don’t see feeds now

I have been diving into the working of rust and I am loving how rust is just opposite of my primary language like typescript/javascript enums and structs just works like C++ or C.
With this rust tool, I don’t see feeds now
tips and tricks

I Bet You Don’t Use These JavaScript Tricks and Practices

Tell me how many did you know by responding to the article and you may share this with your network to find out how many they know.
I Bet You Don’t Use These JavaScript Tricks and Practices
tips and tricks

Overloading TypeScript Constructors like C++ or Java with a Catch

Whenever I was looking into the TypeScript Date class constructor implementation, I always wondered how its constructor signature worked like that, how it can have many signature, how can it work with 1st argument as number or string or an instance of itself.
Overloading TypeScript Constructors like C++ or Java with a Catch
Reading List Contact
server

© Nirjal Paudel