Questions tagged [textwrangler]

TextWrangler is the “little brother” to BBEdit, a professional HTML and text editor for the Macintosh.

TextWrangler

TextWrangler is the “little brother” to BBEdit, a professional HTML and text editor for the Macintosh.

TextWrangler vs. BBEdit

TextWrangler is a very capable text editor. What sets BBEdit apart is its extensive professional feature set including Web authoring capabilities and software development tools.

How do I get TextWrangler?

Download TextWrangler here.

TextWrangler is a…

  • General Purpose Text Editor
  • Programmer’s Text Editor
  • Unix And Server Administrator’s Tool
  • Powerful Text Transformer And Manipulator
  • Good Mac OS Citizen
  • Powerfully Useful Tool
  • product developed in the best traditions of Bare Bones Software, with high performance, ease of use, a rich feature set, and the ability to read its own release notes.

TextWrangler 4.0 System Requirements

  • Mac OS X 10.6 or later (10.6.8, 10.7.3 or later recommended)
  • Intel Macs only

What about BBEdit Lite?

BBEdit Lite was discontinued a number of years ago, and the world has moved on. TextWrangler and BBEdit have capabilities that were never supported (or possible) in BBEdit Lite:

  • Run natively and at full speed on Macs with Intel processors;
  • Open files from (and save them to) remote FTP and SFTP servers;
  • Pattern matching (BBEdit's grep mode uses a PCRE version from 2003, so recent PCRE features are missing);
  • Support for editing Unicode text files, and converting between text encodings;
  • Find Differences to compare files or folders;
  • Integration with the Unix command-line environment;
  • Advanced and extensible programming language support, with code folding, syntax coloring, and extensibility;

…and much much more.

177 questions
2
votes
1 answer

TextWrangler, How to hide page guide automatically?

I know there's an option item to show/hide page guide in TextWrangler, but I just wonder, if there's an operation to hide page guide automatically ever time I run TextWrangler application? AUTOMATICALLY! Thanks!
Capt. Michael
  • 103
  • 2
  • 11
2
votes
3 answers

Text Editor which tells the index of the cursor position

I need a text editor which tells me the position of the cursor (so I can determine ranges of text to then load into strings). Unfortunately the text editors ive tried (TextWrangler, Aquamacs, EditPad) only tell me the line number the cursor is on,…
Giovanni
  • 850
  • 3
  • 14
  • 32
2
votes
2 answers

Simple TextWrangler Regex Replace

I am using textwrangler and am new to regex. I have a bunch of emails addresses, but I need to remove only those that are @mydomain.edu addresses. Standard Hall,414,Ashley,Smith,"asmith@mydomain.edu, asmith@otherdomain.com" Standard…
Nic Hubbard
  • 41,587
  • 63
  • 251
  • 412
2
votes
2 answers

Regex search in a text editor to look for entries

I am looking for a regular expression to remove comment lines from a sql fine. All of the comments start with "COMMENT ON" (obviously) but may tend to have more than one line. I was able to come up with an expression to remove a single line but am…
agregory23
  • 23
  • 3
1
vote
1 answer

Find Lowercase immediately followed by uppercase

My text is as below: [ba]
  • Word word wordWord word.
  • Word word word.
  • Word…
Niamh Doyle
  • 1,909
  • 7
  • 30
  • 42
1
vote
1 answer

How do you run programs through TextWrangler?

I have just started to get experiment with C++ on my MacBook Pro, and am very new to it all. Through research, a few different people have suggested to use TextWrangler for writing the code. I have put together some of the code that the beginning…
1trb1
  • 11
  • 1
  • 2
1
vote
1 answer

Need to read specific columns in Wrangler Excel read

I am using Wrangler to read an excel and transform. Issue is wrangler gives option for sheet number\name, what I need is to also specify the columns to be read eg 'B1:E450'. I could not get any combination of column declaration to work. Any help is…
1
vote
2 answers

objective-c source code formatter

I prefer something that will work with Xcode 4, but I need a pretty print formatter for Objective-C code on the mac. I have tried Editor > Structure > Re-indent, but nothing happens (I have the code string selected beforehand). I am happy to use…
Mark
  • 1,988
  • 2
  • 24
  • 42
1
vote
1 answer

Regex in Textwrangler - Remove String Between Two Characters

I have a text file that has multiple weather statistics for popular cities, which includes not only the highs and lows for the current day, but also yesterday's weather, as shown below: City/Town, State;Yesterday’s High Temp (F);Yesterday’s Low Temp…
1
vote
1 answer

Textwrangler: How can I Replace \d+ with {\d+}?

I need to find and replace the text [n] with the text \textsuperscript{n}. Where n is a number between 1-99. EG. the text [15] with the text \textsuperscript{15} I am not a programmer but think grep is my friend here. I have tried: Find:…
Robert
  • 11
  • 1
  • 3
1
vote
2 answers

Why isn't os.walk recognising my variable name?

I've written the following in TextWrangler: directory = raw_input("See contents of: ") for root, dirs, files in os.walk(directory): print root, dirs, files Unfortunately, when I run it in terminal and assign the directory path by typing or…
Paul Patterson
  • 6,840
  • 3
  • 42
  • 56
1
vote
1 answer

RegEx Capturing indefinitely repeating patterns with specific backreferences?

I'm trying to find a good regex to use with TextWrangler to parse task descriptions into a Rememberthemilk.com format: so that a line like: Example task section 1 section tomorrow section tagone tagtwo tagthree tagfour whould convert into the RTM…
MiguelJazz
  • 11
  • 1
1
vote
1 answer

Texwrangler replacement string

I would like to use the reqex expression: \s\.\d to find a expression, e.g., ".9" and replace it with the expression "0.9", i.e., part of the search pattern is part of the replacement pattern. This is to avoid replacing .TRUE. with 0.TRUE. I've…
Shejo284
  • 4,541
  • 6
  • 32
  • 44
1
vote
0 answers

Javascript not working in TextWrangler

This is a color guessing game. However when I try to run it from TextWrangler nothing happens. But when I use a javascript editor online the game works perfectly. Is there something wrong with my code or is there a problem with…
codegurl25
  • 61
  • 4
1
vote
1 answer

How to apply loop to extract contents from "DIV" tag while using Beautiful soup?

i have recently found a very neat way of web scraping using bs4 that has a really nice organized structure to it. let us say this is our html code:
Anurag Pandey
  • 373
  • 2
  • 5
  • 21