Surround
Sublime-surround is a SublimeText 2 plugin for adding, deleting and modifying text around the cursor or selection.
Details
Installs
- Total 8K
- Win 3K
- Mac 4K
- Linux 2K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
sublime-surround
Sublime-surround is a plugin for SublimeText 2 and 3 for adding, deleting and modifying text around the cursor or selection.
It makes it easy to do things like:
- Change single quotes to double quotes
- Change parentheses to square brackets
- Change
<div id="my-custom-oldschool-header">lorem ipsum</div>
to<header>lorem ipsum</header>
It's a loving homage to Tim Pope's vim-surround, the yawning gap in my workflow when I switched from vim to SublimeText 2. While not a note-perfect port, I think it's a pretty nice translation of the concepts and functionality of the vim plugin to the sublime context.
Vim-surround compatible mappings for Vintage are available as a separate plugin here: https://github.com/jcartledge/vintage-sublime-surround
Installation
Package Control
Package Control is “a full-featured package manager that helps discovering, installing, updating and removing packages for SublimeText 2.” It's the preferred way to manage your SublimeText 2 Packages directory.
Follow these instructions to install Sublime-surround with Package Control.
Using Git
Go to your SublimeText 2 Packages
directory and clone the repository using the command below:
$ git clone https://github.com/jcartledge/sublime-surround.git
Download Manually
Download the files using the .zip download option.
Unzip the files.
Copy the folder to your SublimeText 2 Packages directory.
Basic use
All functionality is accessed through the SublimeText command palette: CTRL-SHIFT-P
on Linux and Windows, CMD-SHIFT-P
on Mac.
There are three commands:
- Surround: surround selection
- Surround: change surround
- Surround: delete surround
Surround selection works on the current selection or selections. It prompts for the text to surround the selection with.
Change surround works on the current cursor or cursors. It prompts for wrapper text to replace, then for the text to replace it with.
Delete surround works on the current cursor or cursors. It prompts for wrapper text to delete. It is a special case of Change surround where the replacement is the empty string.
See below for more information about how search and surround text is handled.
Features
Pair-aware
Surround understands the following pairs:
{ }
[ ]
( )
< >
/* */
- “
As in vim-surround, specifying the opening symbol in a pair as surround text will add inner whitespace around the wrapped text. If you don't want whitespace use the closing symbol.
The same rule applies when specifying text to replace or delete, but either symbol will work if there is no internal whitespace.
Examples:
Changing James Cartledge jcartledge@gmail.com
to James Cartledge <jcartledge@gmail.com>
- Select the email address
- Invoke the Command Palette (
CTRL-SHIFT-P
/CMD-SHIFT-P
) - Select Surround: surround selection
- Type
>
and press enter
Note we use the closing symbol so no internal whitespace is added.
Changing if (a > 100) doSomething();
to if (a > 100) { doSomething(); }
- Select the text
doSomething();
- Invoke the Command Palette (
CTRL-SHIFT-P
/CMD-SHIFT-P
) - Select Surround: surround selection
- Type
{
and press enter
Note here that use of the opening symbol results in addition of internal whitespace.
Changing if (a > 100) { doSomething(); }
to if (a > 100) doSomething();
- Place the cursor within the text
doSomething();
- Invoke the Command Palette (
CTRL-SHIFT-P
/CMD-SHIFT-P
) - Select Surround: delete surround
- Type
{
and press enter
Note that by using the opening brace we remove the internal whitespace as well as the surrounding braces. You can specify the closing brace if you want to retain the whitespace. (If there was no internal whitespace either symbol would work to remove the braces.)
Tag-aware
HTML/XML tags with attributes are supported, but slightly differently to vim-surround.
Examples
Changing Email me for more information
to <a href="mailto:jcartledge@gmail.com">Email me</a> for more information
- Select the text
Email me
- Invoke the Command Palette (
CTRL-SHIFT-P
/CMD-SHIFT-P
) - Select Surround: surround selection
- Type the opening tag including attributes:
<a href="mailto:jcartledge@gmail.com">
and press enter
Changing <div class="my-custom-header">lorem ipsum</div>
to <header>lorem ipsum</header>
- Place the cursor within the text
lorem ipsum
- Invoke the Command Palette (
CTRL-SHIFT-P
/CMD-SHIFT-P
) - Select Surround: change surround
- Type the opening tag to replace:
<div>
and press enter - Type the replacement tag:
<header>
Note it's not necessary to specify attributes for the tag you're trying to match - by not specifying attributes you're telling the command to match that tag with no or any attributes. If you specify attributes only a tag with the exact attributes you specify will be matched.
We don't specify any attributes for the replacement header
tag here, but if we wanted to that would work fine just as in the mailto example above.
Regular expressions
Any search text in change/delete which is not a recognised pair or tag and is longer than a single character is treated as a regular expression.
Multiple cursors/selections
Surround should support multiple cursors and selections fine, but this hasn't been tested very thoroughly as I don't really use them.
Mappings
There are no default key mappings; functionality is accessed through the SublimeText command palette.
There's nothing to stop you from creating mappings in your User/Default.sublime-keymap
file. The commands you can map are:
surround_selection
surround_change
surround_delete
Vim-surround compatible mappings for Vintage are available as a separate plugin here: https://github.com/jcartledge/vintage-sublime-surround
Contributing
Go nuts. Clean, linted pull requests please :)
Disclaimer
I have never written Python before in my life (apart from a one-line patch to another SublimeText plugin.) It's a great testament to the design of Python and the SublimeText 2 plugin API that I got this far. You have been warned.
Prior art
There is (was? It doesn't seem to be on GitHub anymore…) another plugin with similar functionality, but I don't think it's very actively maintained and I was never able to get it to work properly.