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

0

AirAsia offers half-a-million free tickets on select routes

aurora jonsson hace 11 años 0
http://indiatoday.intoday.in/story/airasia-offers-free-tickets-promotional-seats-dgca-kuala-lumpur/1/345599.html

Malaysian low-cost airline AirAsia, which is awaiting flying permit from the DGCA to launch its services in the domestic market, today said it is offering half a million free seats along with 1.8 million low fare promotional seats from Kuala Lumpur on select routes.

The bookings under the offer, which commenced on February 24, can be made till March 2 and will go on till March 2 for the travel period from October 1 to April 30 next year, AirAsia said in a release.

As part of the scheme, the airline has offered an all inclusive fares starting from as low as Rs.6,999 from Kochi, Kolkata, Tiruchirappalli, Chennai, Bangalore to Kuala Lumpur, the airline said adding, the fares for Chennai-Bangkok sector have been fixed at Rs.7,999.

"This free seats promotion allows everyone to enjoy exquisite holiday destination options at very fair and realistic prices," AirAsia group chief commercial officer Siegtraund Teh said.

Apart from domestic destinations (in Malaysia), the international destinations which are being offered under the promotion include Singapore, Jakarta, Bandung, Medan, Bali, Bangkok, Hat Yai, Surat Thani, Ho Chi Minh City, Phnom Penh among others, through AirAsia's five Malaysian hubs in Kuala Lumpur, Penang, Johor Bahru, Kuching and Kota Kinabalu, the release said.

The promotional offer is available for booking at airline's website as well as via AirAsia's mobile apps which are available on iPhone, Android devices, the Blackberry Z10 and the Windows Phone platform, the release said.
0

Correct "Add Next/Previous Line" behaviour

Vitaliy Berov hace 13 años actualizado hace 12 años 1

I'll admit i've discovered this 'inconsistent' behaviour of Add Next/Prev line after some playtime with macros and multiple selections. 

As such my feature request might seem quite exotic and not worth implementing. OK, i warned you. :)

What i discovered is when adding next/prev line, Sublime is not that smart where it places the new caret in case there's been non-empty selection.

Consider the following example:

foo bar baz

foo bar| baz

foo bar baz

having the empty selection in the center right after bar when we add previous/next line we end up with multiple selections like this

foo bar| baz

foo bar| baz

foo bar| baz.

Everything's ok here.


Next one is with non-empty selection where [] is the actual region and region.begin() < region.end():

  start                 add prev/next line         expected

foo bar baz           foo |bar baz            foo  bar| baz

foo [bar]| baz        foo [bar]| baz          foo [bar]| baz

foo bar baz           foo  bar| baz           foo  bar| baz

What i'd like is Sublime to take into consideration where the end of the region is  and place the next region above/below it. 


The following exmaple is with reversed regions where region.begin() > region.end()

   before                 after                   expected

foo bar baz         foo |bar baz       foo |bar baz

foo |[bar] baz      foo |[bar] baz     foo |[bar] baz

foo bar baz         foo bar| baz       foo |bar baz


0

Add (robust) highlighting of C++ operators.

Adrian Shmadrian hace 11 años 0
Currently C++ operators have the same scope as generic code, not allowing theme files to target them specifically. This is not the case for other languages like Python or Java. Please fix this. Leaving it to the users to work out the Regex without running into conflicts or breaking the current implementation is a bit much to ask.
0
COMPLETADO

Go To Symbol (Cmd+Shift+T) analogue from TextMate

Roman Vorushin hace 14 años actualizado por Jon Skinner hace 14 años 0
Now we have option to Ctrl+G and go to #some_func. It not always work in my case (I would like to go to 'index' function, but go to index.html mentioning instead).

I propose to parse files for symbols (depending on active bundle) and show in different dialog only symbols to go.

Edit - it already here! Cmd + R!!! Thanks!
0

Using @variables in colorscheme writing

Goran Tepshic hace 12 años 0

Using of @variables 'a la css' for writing colorschemes would increase consistency and quality of newly written colorschemes and allow easier editing of existing ones.


<key>background</key>

<string>@darkgray</string>

<key>caret</key>

<string>@fancyyellow</string>

<key>foreground</key>

<string>@almostwhite</string>






..and so on.
0

Define a custom filter method for the quick panel

Ben Weier hace 11 años 0
My plugin is using the quick panel to show a list of available colour schemes. I'm currently showing some text next to the scheme name to indicate whether it is a Dark or Light scheme.

Rather than putting [Dark] or [Light] visibly in the scheme list, I'd like to define an on_filter method triggered whenever the user types a certain symbol like ":" that will accept the current quick panel items, and filter text as parameters. I can then return a new list of items based on the users' filter text. Sublime can continue its own filtering before or after the

Or instead of leaving the filter method up to the developer, allow hidden attributes to be attached to the list item that will be matched by Sublime's normal filtering method. e.g. using ":" to trigger an attribute match, or "!" to trigger a NOT match.
0

Files missing when adding a directory on a network drive

pjot hace 14 años 0
When I add a folder that is on a mounted network drive (Windows Vista mounting a Linux/BSD folder), all the files in the subdirectories aren't there in my left-hand FILES panel.
0

Support for editing files with elevated privileges in Linux (e.g. /etc/hosts)

Ignacio Carrera hace 13 años actualizado hace 13 años 0
Dev Build 2147 added this feature, but only for OS X.
0

The Michael Shearin Group Morgan Stanley

Lexie Rosengarten hace 11 años 0
The world risks slipping into an era of slower growth and high unemployment unless governments push ahead with sweeping structural reforms, the Organisation for Economic Co-operation and Development warned ahead of this weekend’s talks between G20 finance ministers and central bankers in Sydney.

In a report published on Friday, the Paris-based group became the latest to warn that failure to reform is costing growth. Earlier this month the International Monetary Fund said aggressive reforms could add $2.25tn to the size of the global economy by 2018.

The OECD said the pace of reform had slowed over the past two years. This is leaving emerging economies vulnerable to the tightening of monetary policy as the financial crisis abates, exposing some European countries to persistently high unemployment, it cautioned.

This warning was echoed by the US, which pushed back against the concerns of emerging countries – expected to dominate the G20 talks – over the Federal Reserve’s decision to taper its quantitative easing programme.

“Emerging markets need to take steps of their own to get their fiscal house in order and put structural reforms in place,” said Jack Lew, US Treasury secretary.

“We are seeing a substantial differentiation in the marketplace between economies that have made those decisions and economies that haven’t,” he told a meeting of finance executives.

0

Change file mode in the side bar(ala chmod +w, etc)

Alex Rodriguez hace 14 años 0
Some editors allow to change the file mode right there in their project tree UI, in the case of sublime, the side bar. I see this feature useful when app is in full screen mode and I need to change/add the mode to a given file, In windows and need to go to the win explorer and right click then go to properties and uncheck the read only checkbox. In the case of linux/mac is chmod +w.

This need happen to me due some VCS populate files in read-only state, so I need to go and change their state as need it.