The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
67 views

Change HTML tag in vim, but keeping the attributes (surround)

Let's say I have a tag (and cursor at *): <h1 class="blah" id="moo">H*ello!</h1> I want to change it to: *<h2 class="blah" id="moo">Hello</h2> i.e. Change the type of ...
1
vote
2answers
94 views

5.1 Channels with PortAudio

I am trying to get started with PortAudio. I am able to build the bundled example file "paex_sine.c" with no problems. This a sine wave on the left channel and a different frequency sine wave on the ...
0
votes
1answer
25 views

automatically surround tag with another tag

Does anybody know a way to surround a predefined tag (eg container-tag) automatically with another tag. eg. you have different container types like article.tag,video.tag,image.tag etc. Everytime I ...
0
votes
0answers
31 views

Finding out whether a search query belongs to surround query parser or Lucene core library

Suppose a query is entered as "(bill w green) 9w (paul w adam)" OR "(bill w green) 9n (paul w adam)", Is it right to parse the search query to find whether it contains 9w OR 9n. If it contains 9w or ...
0
votes
1answer
73 views

OpenAL output sound 5.1

In my project I'm using OpenAl, the 3d effect works fine, but only with the left/right speakers.. my pc have a 5.1 system, so 2 rear speakers, 2 front, 1 head and 1 subwoofer. in windows is right ...
1
vote
0answers
32 views

quad audio player

Been trying to find the best way to approach my problem. I want to be able to play a quad (or more channels) audio file. Back before CD & Digital there was a small market for quad songs. I want to ...
2
votes
2answers
150 views

number of elements surrounding an element in a matrix, matlab

I need to write a function that finds the "deepness" of a cell (row,col) in a matrix. Given any nxm matrix say mat = ones(6,6) for example.. mat = 1 1 1 1 1 1 1 1 ...
1
vote
1answer
165 views

How to make a 5.1 and a 7.1 surrond sound file

I'm trying to make/create a 5.1 and a 7.1 surround sound file but I'm having trouble finding a way to do it. I'm using ubuntu 12.04 and I have access to octave / matlab / python. I understand how to ...
0
votes
1answer
95 views

Lucene: Escaping keywords for Surround QueryParser

I'm using Lucene Contrib's SurroundQueryParser, and I've hit an issue with escaping keywords. Unlike Lucene's regular QueryParser, Surround seems to recognize even lower case and/or/not as keywords, ...
2
votes
2answers
280 views

FMOD surround sound openframeworks

Ok, I hope I don't mess this up, I have had a look for some answers but can't find anything. I am trying to make a simple sampler in openframeworks using the FMOD sound player in 3D mode. I can make a ...
2
votes
1answer
83 views

vim: insert word with vim-surround

I use surround vim plugin. when I write a latex source for make a word to \bf similar to hello w*orld ( * is the cursor position) I use ysiw}a\bf<space> and get hello {\bf *world} ...
3
votes
3answers
348 views

Surround two words with quotes in Vim

I am working with vim-surround and the following text. (* is the place of the cursor) This is a lo*ng line and I want to highlight two words I want to surround both the words long and line within ...
1
vote
3answers
2k views

MySQL select before after row

This is the example table: Column | 1st record | 2nd record | 3rd record | 4th record | etc<br /> id (primary) | 1 | 5 | 8 | 12 | etc<br ...
0
votes
1answer
166 views

Vim.surround does nothing

I have installed surround.vim into ~/.vim/plugin I can select with "v", make my selection and then hit "s" or "S" followed by a single or double quote. Nothing happens (well, sometimes text is ...
10
votes
2answers
295 views

Vim Surround inserts extra space around the word

When I select the word and use the surround plugin with S: foobar It becomes ( foobar ) How do I remove the extra spaces, so that it becomes (foobar) What should I place in my settings?
0
votes
3answers
565 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 ...
1
vote
2answers
530 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
442 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
2answers
299 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> ...
2
votes
4answers
371 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 ...
6
votes
4answers
684 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 ...
3
votes
1answer
275 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 ...
0
votes
2answers
591 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, ' ' + ...
3
votes
1answer
461 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 ...
1
vote
2answers
778 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: ...
2
votes
1answer
299 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
2answers
323 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
745 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
413 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 ...
5
votes
2answers
674 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? ...
2
votes
4answers
785 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 ...
13
votes
6answers
2k 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, ...
8
votes
8answers
6k 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 ...
6
votes
2answers
1k 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 ...
2
votes
2answers
889 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 ...