This plugin provides text objects for blocks inside backticks. You need to have vim-textobj-user installed to use it.
There are three objects provided. Two of them are the obvious ones, and the third may be useful for some particular cases.
The obvious ones:
a`
: All the text inside the backticks, including the backticks.i`
: All the text inside the backticks, without the backticks.
The special one:
ii`
: All the text inside the backticks, excluding all the space after the opening backtick and all the space before the closing backtick.
This can be useful, for example, when editing HTML templates inside backticks in javascript:
var template = `
<div>
Hello world
</div>
`;
That way, you can edit the template without having to re-indent.
Given the symmetric nature of backticks, there is no (easy) way to know if you are inside an opening and closing backtick, or if you are inside a closing and an opening backtick. So, use with caution.
You can obtain the same basic functionality with vim-textobj-between. Using this plugin you just save a keystroke and get the inside-but-without-whitespace functionality.
Install vim-textobj-user.
Copy the files to your plugin directory, or use pathogen.