Categories: Web and IT News

Inspect Character Under Cursor in Vim

From time to time, you may come across the need to inspect the character under the cursor in Vim. For example, VimTricks reader Scott wrote in asking for help changing smart quotes in a file to regular quotes. Smart quotes or “curly quotes” are the special characters used by modern prose editors in place of regular double and single quotation marks. They are stylized differently for the beginning and end of the quote:

these quotes are smartand so are these but 'these' and "these" are not

Scott’s case was one that many of us encounter: needing to replace these quotes with the traditional versions in some code or text file. Clearly, this is a case for Vim’s s substitution command. Something like this would work:

:s/[“”]/"/g

But how would we insert these characters into the regex? What if we can’t just copy paste them? How can we investigate strange or unfamiliar characters that we come across in our Vim buffer? As usual, Vim has a way:

  • ga – Show details about the character under the cursor
  • :as – Command mode version of the same

If we position our cursor over top of one of the smart quotes and press ga, Vim will provide detailed information about the character under the cursor. Included is the hex code for the character, exactly what we’ll need to be able to enter it into our substitution command:

<“> 8220, Hex 201c, Oct 20034, Digr "6

We can see that the opening quote has a hex code of 201c. Repeating on the closing quote we get 201d and now we have what we need to create our regex. To do this, we’d enter :s/[ to start our replacement and then press to enter the hex code followed by u and the code, 201c. Then u201d to enter the closing quote. Lastly the rest of the substitution command: /"/g.

I’ve put this whole workflow together into a brief screencast below.

Extending Vim’s Character Inspect

For even more advanced functionality, check out Tim Pope’s incredibly useful plugin called Characterize. It adds more functionality that’s helpful for today’s modern text environment. In addition to the hex code and Vim digraphs, ga will now show the Unicode character names, the emoji short names and the HTML entity names. For example:

  • Press ga on top of and Vim will tell you the HTML entity name is
  • Press ga on top of and you will see the Unicode name is QUADRANT UPPER LEFT AND LOWER LEFT AND LOWER RIGHT (but who doesn’t know that already)
  • Press ga on top of 🪳 and you’ll learn that you can enter this Emoji in Slack with :cockroach:

The emoji capabilities alone make this yet another tpope plugin worthy of a line in your .vimrc.

The post Inspect Character Under Cursor in Vim appeared first on VimTricks.

Inspect Character Under Cursor in Vim first appeared on Web and IT News.

awnewsor

Recent Posts

The Quiet Death of the Dumb Terminal: Why Claude’s New Computer Use Is the Real AI Interface War

Anthropic just made its AI agent permanently resident on your desktop. Not as a chatbot…

4 hours ago

The Billionaire Who Says Your Kids Should Learn to Code Like They Learn to Read — And Why Wall Street Should Listen

Jack Clark thinks coding is the new literacy. Not in the vague, aspirational way that…

4 hours ago

Your AI Chatbot Is Flattering You — And It’s Making Its Answers Worse

Ask a chatbot a question and you’ll get an answer. But the answer you get…

4 hours ago

Google Photos Finally Fixes Its Most Annoying Editing Flaw — And It’s About Time

For years, cropping a photo in Google Photos has been an exercise in quiet frustration.…

4 hours ago

The Squeeze Is On: How U.S. Sanctions, OPEC Politics, and a Shadow War Are Reshaping Global Oil Markets

OPEC’s crude oil production dropped sharply in May, and the reasons stretch far beyond the…

4 hours ago

Google’s Gemini Is About to Know You Better Than You Know Yourself — And That’s the Whole Point

Google is making its biggest bet yet on the idea that artificial intelligence should be…

4 hours ago

This website uses cookies.