Re: Find-Replace using LaTeX commands

2012-01-30 Thread Tim Lahey
On 2012-01-29, at 10:34 AM, Rich Siegel sie...@barebones.com wrote: On Tuesday, January 17, 2012, Tim Lahey tim.la...@gmail.com wrote: Doing find-replace with the standard BBEdit find-replace dialog is very annoying since BBEdit is making me do more work since I can't just select text and do

Re: Find-Replace using LaTeX commands

2012-01-30 Thread Rich Siegel
On Sunday, January 29, 2012, Tim Lahey tim.la...@gmail.com wrote: It's still kind of annoying on the replace side since I don't think of \r or \t except as LaTeX strings so I've accidentally added return characters into my text in the past. Use Selection for Replace works, as well. Both share

Re: Find-Replace using LaTeX commands

2012-01-29 Thread Tim Lahey
I know. I'm looking for a way to disable the recognition of those characters so I don't need to do that. Since most of my text is LaTeX, it's quite annoying to have a search error and then realise that there's a special character and escape it. Cheers, Tim. On 2012-01-17, at 3:07 PM, Govinda

Re: Find-Replace using LaTeX commands

2012-01-29 Thread Tim Lahey
On Tue, Jan 17, 2012 at 3:21 PM, Doug McNutt dougl...@macnauchtan.com wrote: It helps to understand that when bbedit has a file open for editing the entire document is stored as 16 bit UTF characters.  The \ character used as an escape elsewhere is essentially never there at all. (Editing a

Re: Find-Replace using LaTeX commands

2012-01-29 Thread Rich Siegel
On Tuesday, January 17, 2012, Tim Lahey tim.la...@gmail.com wrote: Doing find-replace with the standard BBEdit find-replace dialog is very annoying since BBEdit is making me do more work since I can't just select text and do a find based upon it. I don't understand why not. When you select

Re: Find-Replace using LaTeX commands

2012-01-17 Thread Govinda
Hi Tim If I understand what you are asking correctly, then yes: \r = the line ending character \t = the tab character if you want to find the *literal* string \r, then you would search for it this way: \\r The \ char escapes whatever comes next. -Govinda -- You received this message because

Re: Find-Replace using LaTeX commands

2012-01-17 Thread Doug McNutt
At 12:07 -0800 1/17/12, Govinda wrote: If I understand what you are asking correctly, then yes: \r = the line ending character \t = the tab character if you want to find the *literal* string \r, then you would search for it this way: \\r The \ char escapes whatever comes next. It helps to