Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.

-3

PHP # comment bug

Gerwin van Royen 12 years ago updated by Mihkel Miliste 12 years ago 1
When coding in PHP, a # shouldn't be a comment. 
-3

replace with preserve case bug

PhalconPHP 12 years ago updated by Saad Farooq 11 years ago 3
I think the "replace all" option have a bug, follow these steps:

Write: MySQL

Replace all MySQL by PostgreSQL, final replacement is: PoSTGreSQL

Preserve Case is enabled.
-3
Declined

Why do I have tabs, when I open a file with sublime?

aristidesfl 12 years ago updated by Jon Skinner 12 years ago 0
If I open one file with sublime, why do I see a tab which has no functionality?
Answer
Jon Skinner 12 years ago
By Design
-3

Need help please.

HBOSOFFICE 11 years ago updated by sqlitedog 11 years ago 5

Hi, 

I am new at using Sublime, can anyone send me tutorial to set it up correctly, I am solely on a Mac Lion. I will use the Sublime editor for HTML5 / CSS / jQuery / PHP / Javascript and Python. I could not find HTML5 on the syntax. 

Thank you.

-3

not sure where to report bugs

Adam Murphy 12 years ago updated 12 years ago 0
not sure where to report bugs, but i'm totally bummed my downloading of a new copy of ST2 killed my customized twilight theme :[

i had a custom version of it i'd made, thought i had a backup, bummer man.
-3

Smart comments - update on save

PatrickTaylorEdwards 11 years ago updated by Jacob Gardner 11 years ago 1

Perhaps this already exists, but I would love my comments to be updated each time I save a file. For example, I have a comment at the start of all my JavaScript files and when I save the file I would like my comment to update, automatically. The comment includes information such as 'Modified By', 'Date last edited', and the file name. A plugin or feature to add a default comment with this information, in my set format, would be really useful; I imagine it would work in the same way as default email signatures - but with variables.

-3

Upgrading to 3 automatically import all your pluggins and UI settings from v2

Craig Russo 11 years ago 0

When 3 is released can it import all your settings and plugins from 2 so you don't have to install and configure all that stuff again? I have the side bar in a dark color scheme and just a punch of plugins installed that while its easy to install them when you have a lot it's a pain.

-3

www.dstvinstallfast.wozaonline.co.za

cheema 11 years ago updated 11 years ago 7
www.dstvinstallfast.wozaonline.co.za


-3

add_regions erases the previous regions with the same name.

Filipe Cabecinhas 12 years ago updated 12 years ago 0
add_regions() doesn't add regions. It replaces previous regions with the same name.

add_regions() with the same region name as a region already present in the view will replace the existing regions, instead of adding to them (as the name implies).

Example:
>>> v = sublime.windows()[0].active_view()
>>> v.add_regions('a', [v.full_line(v.text_point(133,0))], 'string', 'circle', sublime.HIDDEN)  # A circle is added, in line 133
>>> v.add_regions('a', [v.full_line(v.text_point(137,0))], 'string', 'circle', sublime.HIDDEN)  # The first circle is deleted and a circle is added to line 137

I was expecting to have two circles, one in line 133, one in line 137.

Regards,

  Filipe

-3

OS-hidden folders/files should not show up in side bar or find results

Hans Meyer 12 years ago updated by stijn 12 years ago 1
Per Visual Studio, folders/files marked as "hidden" at the OS level should not show up in the side bar or find results.