Tagged Questions
The surround tag has no wiki summary.
8
votes
5answers
827 views
Is there an extension or mode in Emacs similar to surround.vim?
Surround.vim is a nifty vim extension that allows you to surround blocks of text with , brackets, braces, and pretty much any arbitrary "surround" character. It supports paragraph and word surround, ...
5
votes
4answers
191 views
How do I surround two words with <code> tag in vim, such that I can repeat the operation with a dot operator?
I'm working with the vim-surround plugin and this HTML (where the * is my cursor):
<li class="sample" style="border-color: #005462;">*#005462</li>
I'd like to surround the #005462 with ...
5
votes
2answers
401 views
Change enclosing quotes in Vim
In Vim, it's a quick 3-character command to change what's inside the current quoted string (e.g., ci"), but is there a simple way to change what type of quotes are currently surrounding the cursor?
...
5
votes
2answers
744 views
Repeating surround with “.” command in VIM
Did anybody get surround.vim to work with repeat.vim?
This should enable you to repeat any command provided by the surround plugin with the "." command.
I think surround.vim should already have ...
3
votes
1answer
168 views
surround.vim: deleting embedded ruby tags
Using surround.vim, while in an .html.erb file, if I type ysw= in front of 'text' it will correctly give me <%= text %>.
However, if I move the cursor over 'text' and type ds=, it doesn't delete ...
3
votes
1answer
198 views
Convert PCM Byte Array To Surround Channels
As I understand, the audio byte array that I am using (PCM Stereo 16bit) is 4 bytes per sample. I noticed that when you invert the Byte value (ie. -128 to 128 and 128 to -128) it does not put the ...
2
votes
4answers
186 views
How do I match a pattern with optional surrounding quotes?
How would one write a regex that matches a pattern that can contain quotes, but if it does, must have matching quotes at the beginning and end?
"?(pattern)"?
Will not work because it will allow ...
2
votes
7answers
2k views
Replacing quote marks around strings in Vim?
I have something akin to <Foobar Name='Hello There'/> and need to change the single quotation marks to double quotation marks. I tried :s/\'.*\'/\"\0\" but it ended up producing <Foobar ...
2
votes
2answers
648 views
Seapine Software - Surround - Automated Builds
I'm thinking of working towards an automated build process where I work (currently our builds are a manual process). Our version control software is from Seapine - Surround SCM and TestTrack. There ...
1
vote
2answers
162 views
Vim Surround: Create new tag but don't indent/new line
I would like to mimic Textmates CTRL+ALT+w, which creates a new pair of opening and closing HTML tags on the same line.
In VIM Surround I'm using CTRL+st in Edit mode for this, but it always indents ...
1
vote
2answers
337 views
VIM: insert empty ERB tags
How can I insert empty ERB tags and put cursor inside it? It is similar to surrounding with surround plugin, but there is nothing to surround.
For example, from this:
bla|bla
I want get this:
...
1
vote
1answer
240 views
Is there a Texmate bundle similar to Vim's surround plugin?
What is the Textmate equivalent to http://www.vim.org/scripts/script.php?script_id=1697
0
votes
3answers
43 views
VIM add tag to multiple lines with surround.vim
I have these three (or more) lines that I want to surround with li (or any other) tag :
Bananas
Citrus
Orange
I can do it this way: qaysstli>jq then 2@a.
Is there a way to do this faster ...
0
votes
2answers
70 views
Vim - surround.vim - s key not working
When I select some code by v key and press s to surround and closed in brackets i receive this error:
surround.vim Visual mode s has been remove in favor of S
How to revert this functionality?
0
votes
1answer
88 views
Installing surround.vim plugin into Vim's plugins folder seems to have no effect?
I've downloaded the surround plugin (surround.vim) for Vim and installed it into the plugins folder. I know plugins work there as i've successfully installed the NERDTree and TList plugins.
Once ...
0
votes
0answers
15 views
Keep changelist in surround when promoting code to the mainline
In surround, if a developer is working on his private branch and checks in his code - he gets a change list.
This changelist is gone when the user promotes his code to the mainline.
Is there a way to ...
0
votes
2answers
128 views
vim mapping keys to surround words/lines with <p></p>
I'm trying to map the keys ALT+SHIFT+W to surround the text/line with <p></p> tags.
Right now I have this on my _vimrc file:
map <A-S-w> c<p><C-R>"<p><ESC>
...
0
votes
2answers
264 views
how to surround a word using System.Text.RegularExpressions.Regex
I've seen this topic:
How to surround text with brackets using regex?
but that's on ruby and I don't know the analog for C#
I tried
text = System.Text.RegularExpressions.Regex.Replace(text, ' ' + ...
0
votes
2answers
192 views
Vim Surround + Repeat, wraps my text with ^M
I'm using Vim's surround and repeat plugins to wrap lines of text with html tags.
I'll use "yse<p>" and "ys$<p>", they both work fine.
I try to repeat the command with ".", and it shows ...
0
votes
1answer
384 views
vim-surround, cs command E319: Sorry, the command is not available in this version
I tried to execute the cs command for vim-surround. But, unfortunately, I got the E319: Sorry, the command is not available in this version message. I use the vimrc from http://amix.dk/vim/vimrc.html
...
0
votes
1answer
249 views
Perl: String manipulation surrounding a mathematical expression
I´m learning Perl, I would like to surrounded an expression like that
function1(mathematical_expresion1)*function2(mathematical_expresion2)
Where 'function1'and 'function2' could be whatever word ...