Skip to main content

Vim - Replace word under cursor

The way you edit text in vim is pretty much by running commands, you have a few shortcuts here and there, but most of the time is just running commands.

While I really like this approach, I do miss a replace word under cursor shortcut. To do that in "plain" vim, you have to type:

:%s/<C-r><C-w>/type_new_word_here/gc

(Where <C-r> stands for Ctrl+R, and <C-w> for Ctrl+W. That's a bit of a stretch on the mac where you only have a Left Ctrl key).

What the previous command does is to look for the word under cursor in the current file and ask you if you want to replace it with the word you have entered in the second part of the command. The flag gc tells vim that the action is global and that it must to ask you for confirmation before replacing matches.

There is not a whole lotta of typing but we can do better.

The good news is that with a bit of vimscript, you can avoid acrobatic motions and start replacing words with a copule of keystrokes.

This is the code you have to add to your vimrc:

" Replace Function
function ReplaceWordUnderCursor()
  call inputsave()
let word = expand("<cword>")
if (word != "")
let newword = input("Replace [".word."] with: ")
call inputrestore()
execute "%s/".word."/".newword."/gc"
else
echo "No word under cursor."
end
endfunction

" Maps the replace function to a command
command ReplaceWordUnderCursor call ReplaceWordUnderCursor()

" Maps the shortcut <leader> r to run the command.
nmap <leader>r :ReplaceWordUnderCursor<CR>


So, with that code in place, when you want to replace a word under the cursor you just hit <leader> r and the editor will prompt you for a replacement word, and offer you the usual replacement options (replace, replace all, quit, etc...)

Something like this:

Replace [whatever_word_under_cursor] with:

Type the new word, hit enter and you are ready to go!







Comments

Post a Comment

Popular posts from this blog

Migrating an ASP.NET MVC 4 app from Azure websites to WinHost

About a week ago I've to migrate an ASP.NET MVC 4/EF5 application from Azure websites to WinHost. While the process was really smooth, there were some caveats related to database connections that I want to share with you. Create and setup the ftp profile on VS and configure the connection string was really easy, WinHost provide you those values and there is nothing special here. But once you deploy your website and try to see it online, you may get the “yellow screen of dead” with the message: "A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)" Assuming you wrote the connection string properly, this happens because you cannot use the default connection name in your web.c...

How to create MS Word documents from Office templates using C#

The OpenXML SDK allows you to do pretty much anything you want with office files such as Excel, Word, etc… While many people like this library, I found it complex, unintuitive and poorly documented, not to mention the awful xml format that uses under the hood to represent the documents, styles, etc. So I decided not to use it and build my own solution. If you, like me, don’t like that library, you will find in this post an alternative approach to build word documents from templates using c#. A neat trick to work with Office is to use the macro recorder to understand how things work. The macro recorder allows you to start a macro, do something by hand, stop it, and then take a look at the generated VBA code. Once you do this, you are pretty much set. This is how it looks the template I’am going to use. Note: save the file as a Word template (.dotx) This is the code to create Word documents from C#: By running the code, you should get a document that looks...

How to replace text with images on Word documents using C#

This post it’s a reply to a question I got from a previous post that shows how to work with Word templates from C# code . If you haven’t read it, I recommend to do so because I’m not going into details here. But basically it was about how to create a Word document from a template and perform same text manipulation. So, the question from Marcel Kieboom  was “Do you know if it would be also possible to replace one of the words with an image which is locally stored?” The answer is yes, and this is how you can do that. Based on the same convention I had used in the previous post, I should have a template like this: What I’m trying to do here is replace the text [angus-young] for an actual pic of Angus. The technique I’m using it’s pretty common on web sites and basically consist in have an image with a matching name for each keyword I want to replace and then create the image path dynamically. This is the C# code to do that. * When I execute t...