-1

Show a function's definition below the autocomplete box.

Nick23 11 years ago 0

When you type a function name a small window should appear above/below the current line with the function's definition, like in Notepad++, instead of having to leave the current line/file when using the "goto anything @". This could be expanded to include library functions as well as user-defined functions.

-1

Change code completion keys combination

Sylvain Verly 13 years ago 0

Add the possibility to move away from code completion dialog by pressing the same key combination it took to pop up that dialog. Currently its annoying that if you are not interested in those proposition, you have to grab your mouse and click away, or choose a random proposition to get that dialog disappear. Navigation should be done through arrows.

-1

Open files/folders should not include extension when sorting alphabetically

Gëzim H 13 years ago 0

Currently, the open files list considers the whole file name when sorting the list alphabetically:


For example with these files, it would sort them like this:

Menu.File.js
Menu.js
Menu.Tools.js

A more appropriate way to sort them would be to not consider the extension, which would result in this:
Menu.js
Menu.File.js
Menu.Tools.js
-1

For build systems, make it possible to use exact scope only rather than include partial matches

Alan Andersen 13 years ago updated by Jon Skinner 13 years ago 3
For example, I have two build systems, one for JSP's and one for .java files. I have my current build system set to automatic. My Java build system has a scope of source.java, and my JSP build system has a scope of text.html.jsp. In some areas in the JSP, it selects the java build system, and in other areas it selects the JSP build system. I realized this is because inside of scriptlets it counts as "source.java.embedded.html text.html.jsp" (hit ctrl-shift-alt-p for those who dont know, shows up in status bar), and since the source.java comes first, the java build system picks on up it. Clicking outside of scriptlets and hitting build chooses the correct one.

Could you add another option such as "use_exact_scope: true" or such so that a particular build system will only use the same scope specified?
-1

OS X Lion full screen should make use of all monitors.

James Farwell 12 years ago updated 12 years ago 2
It would be great if Full Screen and Distraction Free Mode on OS X Lion used all monitors instead of just one. For example, if the layout is 2 columns and the monitors are horizontally arranged, show 1 column on each screen. Or if the layout is 4 rows and the monitors are vertically arranged, show 2 rows on each screen. etc.
-1

MRU when using Cmd+T

Felipe Coury 13 years ago 0
One of the features that I use the most in TextMate is the ability to jump between most recent used files using Cmd+T.

Here's how it works in TM: if you are editing file A and you do Cmd+T and select B.

Now when you are editing B and hit Cmd+T, it show a list with A first, then B, then the other files.

Let's say I pick C, it will now show B as the first option, then A and then C, followed by the other files.

This is a kind of Cmd+Tab for the editor.
-1

XML syntax colouring does not support attribute names with periods

Pierre-Paul Lavoie 10 years ago 0

<tag attribute.7="value"/> is currently not recognized as a valid tag.


entity.other.attribute-name.localname.xml is missing the period in the regexp character class.


([-_a-zA-Z0-9.]+)




-1

The Strength of Morgan Stanley Wealth Management

helgadahlin@gmail com 10 years ago 0
Morgan Stanley serves many of the world’s most sophisticated and demanding institutional and individual investors. Our global presence and expertise allow us to provide our clients with financial advice, integrated solutions and intelligence across all the world’s major markets.

Our valued wealth management clients have entrusted a total of more than $1.8 trillion in assets with Morgan Stanley as of September 30, 2013, making us one of the world’s leading wealth management firms. As we strive for excellence in advising clients and helping them manage their wealth, no responsibility is more important to us than making certain our clients’ assets are safe, secure and available when needed.

- The Strength of Morgan Stanley Wealth Management
- Your Assets are Safeguarded at Morgan Stanley
- Setting the Standard in Wealth Management


Morgan Stanley Smith Barney LLC is a member of SIPC, a federally mandated US nonprofit corporation that protects customer assets from financial loss in the event a broker-dealer becomes insolvent.

SIPC automatically covers securities custodied with Morgan Stanley Smith Barney LLC (stocks, bonds, notes) up to $500,000 per client capacity (e.g., individual, joint) of which $250,000 may be cash. This means that in the unlikely event of liquidation, a court-appointed trustee of a SIPC member firm and SIPC representative will examine the records of the member firm to verify that all of the securities are accounted for. If sufficient funds are not available in the firm’s customer accounts to satisfy claims within the above limits, the reserve funds of SIPC are used to supplement the distribution, up to the ceiling of $500,000 per customer, including up to $250,000 for cash claims.

Money market funds receive SIPC coverage as securities, not as cash. Funds in the Bank Deposit Program are covered by FDIC insurance, not SIPC.

Additional information about SIPC is available at http://www.sipc.org/.

Morgan Stanley Smith Barney LLC also has obtained private insurance in excess of SIPC coverage, which provides an additional $1 billion coverage on an aggregate basis to cover shortfalls if basic SIPC coverage is insufficient as a result of breach of securities rules or physical loss or damage to customer assets. This coverage is subject to a firm wide cap of $1 billion with no per-client limit for securities and a $1.9 million per-client limit for the cash portion of any remaining shortfall.

Federal Deposit Insurance Company (FDIC) Coverage
The FDIC is an independent agency of the US government created by Congress to maintain stability and public confidence in the nation’s financial system by, among other things, insuring deposits.

FDIC deposit insurance protects clients against the failure of each depository institution that participates in Morgan Stanley Smith Barney LLC’s Bank Deposit Program.

Deposits in the Bank Deposit Program are FDIC insured up to a total of $250,000 per bank for each insurable capacity in which funds are held (individual, joint, etc.).

Additional information about the FDIC is available at http://www.fdic.gov/.


Read Related Articles:
Elm Street Group at Morgan Stanley
Michael Shearin Elm Street Group at Morgan Stanley
Elm Street Group Product Brochures
-1

(Sometimes) cannot switch projects via key binding with build 2041 on OSX

Oktay Acikalin 13 years ago updated 13 years ago 3
At some point - don't know really when that happens - I cannot switch projects via key binding anymore. In the console I see this:
no command for selector: noop:

After some time/actions I can use it again.

How can I debug this in more detail? Currently I cannot reproduce it on purpose and don't know what resolves the problem.
-1

<script> tag won't close in HTML or Rails (HTML). Build 2181

Scott Carleton 12 years ago updated 12 years ago 0
When you create a <script> tag, it's really difficult to close it. One can write '<' but the moment you put the slash in it erases it.  Very aggravating.  

Best way around this is when writing the open tag, to hit tab and have it complete the whole set for you.
-1

Completion API

gearheart 13 years ago updated by kutu 12 years ago 1
Hi

I want to write a pluging which will supplement default completion list with words from other files.

Where can I read about completions API?
Is there a way to supplement completions, not replace them completely?

Thank you
-1

Haskell: permit comments in module definitions

Edward Amsden 12 years ago 0
Sublime does not properly highlight comments in module definitions:

For example:

module Foo (
 -- comment
 decl,
 -- comment
 decl2
) where
....

is valid Haskell, but Sublime highlights the comments as declarations.
-1

vi style subl +line_number from command line

mrmachine 12 years ago updated by Sven Axelsson 12 years ago 1

The `nose-progressive` plugin has a great feature that displays your $EDITOR then +line_number then the file that triggered a test failure, so you can just triple click the line then copy and paste to open the file at the correct line number. This +line_number syntax appears to be supported by vi, bbedit and many other editors, but not by the `subl` command. Could you please add this?

-1

Backpacker Visa Guide to Southeast Asia

Andrew McCartney 10 years ago 0
As a backpacker in Southeast Asia crossing borders becomes a regular undertaking. Each country has a different rule of entry and some countries will require you to apply for a visa before you travel. As visa requirements often change, for travellers in South East Asia it can be difficult to plan things like budget and duration of travel. Here, we’ve done our best to compile the latest visa information in South East Asia to make it easier for you to plan your trip! Please be aware that information regarding visas is particularly vulnerable to change and make sure you check. if you have new knowledge of a change in border crossing information! If you have new information, blog it here. Backpacker Visa Guide

Westhill Consulting Career & Employment out of Australia has useful blogs for up-to-date information as well as many other sites.

Brunei Darussalam:

Nationals of most European countries (this includes 25 countries in the European Union), Malaysia, Singapore, South Korea and New Zealand do not need to apply for a Tourist Visa for visits of up to 30 days.

USA citizens can stay for up to 90 days.

Citizens of Indonesia, Thailand, Canada, Japan, Switzerland and Norway will receive a 14 day entry.

Other nationalities need to apply for a visa in advance which takes 1-3 days to process. For single entry, the visa costs B$20 or multiple entry B$30. If you require a multiple entry visa for a period longer than three days the cost will be B$50.

72 hour transit visas are also available for most nationalities provided that the traveller can show a ticket for an onward destination.

Passports must be valid for up to 6 months before entering and the embassy recommends that you travel with at least two unused pages in your passport.

Visa Renewal: Visas can be renewed at embassies in Bandar Seri Bagawan.


Cambodia:

Most nationalities can obtain a one month tourist Visa upon arrival which costs around $20.

At land border crossings, notably the Thai/Cambodian border, the fee can be more expensive as the cost is paid in Thai baht and is sometimes rounded up considerably (currently 1200 baht).

You will need two passport photos to apply, or you will be charged extra (usually only $1-2).

Passports must be valid for up to 6 months before entering.


Here, you can pre-order your visa for a set price of $25 set price ($20 visa and $5 processing charge). You will need a digital photo of yourself to upload. Processing takes three days and you will get the visa straight to your mailbox.

See official website for up to date info on which borders support the E-visa as not all of the crossings take it yet.

Visa extension:Visa extensions can be obtained at Phnom Penh immigration office – opposite the International Airport. Tourist visas can be extended one month (around US$35). Some guest houses and travel agencies will also offer the service for a fee. For longer extensions ask for details at the Immigration Office.



East Timor:

Nationals from most European countries, Australia, Canada and the USA do not need to arrange a visa in advance.

Visas must be applied for in advance, as they are no longer granted on the land border.
Passports must be valid for up to 6 months before entering.

It is important to note that there are no currency exchange facilities at the airport or other border posts, so you will need to take cash before you travel.

Visa extension:Visas can be extended for 30 days, costing up to $45. You must have a valid reason for staying.

Penalty for late departure:Penalties range from $70 – $150 US Dollars if the period does not exceed 30 days.

Indonesia:

For visa extentions, go to the Jakarta Indonesia immigration office.

Nationals of Australia, Canada, USA, UK and most European countries are eligible for a 30 day visa upon entry, which costs around $25 USD (cost varies depending on point of entry). Payments can be made in US Dollars only.

Please note – the previous $10, 7-day visa is no longer available.

You will need 2 passport photographs and your passport must be valid for up to 6 months before entering.

Penalty for late departure:Up to $20 / day. For more than 60 days overstay travellers risk deportation or imprisonment.

Laos:

Most nationalities can obtain a 30 day visa for Laos at international airports and land border crossings.

The cost ranges from $20 – $42, depending on your nationality.

At the Thailand/Laos border (Nong Khai – Vientiane) if you pay in Thai baht fees can be more expensive.

You will need 2 passport photos and your passport must be valid for at least 6 months upon entering.

Visa extension:Visa extensions can be applied for at the Vientiane Immigration Office, which costs US$2 / day for 30 days. Extensions can also be obtained from some travel agents for around US$3. 90 day extensions are available, ask at the embassy for details. Warning, do not use “fixers” for visa extentions as it is usually a scam.

Penalty for late departure:Up to US$10/day. Long overstays can lead to arrest and imprisonment.

Malaysia:

Most nationalities are granted a free 30-90 day Visa upon arrival at international airports and border crossings.

The cost ranges from $20-42, depending on your nationality.

Passports must be valid for at least 6 months upon entering.

Please note that Sarawak is a semi-autonomous state and upon entry your passport will be stamped and a new pass issued.

Visa extension:Visas can be extended at Immigration offices in Malaysia. Fees depend on intended duration of stay.

Myanmar:

Visa free entry is available at some border crossings for a short period. If you are going for the day to renew your Thailand Visa for example, you must enter and exit on the same day. Fees are around US$10 (depending on security situation, overland border crossings are frequently closed. Be sure to check the security situation before you travel).

Longer visas should be arranged in advance at a travel agency or Myanmar Embassy. In Bangkok, at the Myanmar Embassy the cost is 810 Thai baht for a 28 day visa, taking three days to process. It is possible to pay extra (around 300 baht) to fast track the process to one day.

Like the Vietnam visa, the cost depends on where you are and how long you mind waiting. It can range from $20 – $50. Your passport must be valid for at least 6 months and you will need two passport photos.

Visa extension:It is possible to extend your visa for up to 14 days in Yangon. Ask at embassy for details of costs.

Singapore:

Citizens of Australia, New Zealand, Canada, South Africa, the UK and most other European countries are granted either a 14 or 30-day tourist pass upon entry to Singapore.

Duration of pass depends on nationality and point of entry. USA citizens receive 90 days. Your passport must be valid for at least 6 months upon entering and you may need an onward ticket.
Visa extension:Extensions of up to 90 days can be applied for at the consulate in Singapore.

Thailand:

Most nationalities, including Americans, Australians and most Europeans receive a free 30 day tourist visa upon arrival into Thailand by air. However, if arriving by land you will only receive 15 days.

Your passport must be valid for at least 6 months upon entering.

Penalty for late departure:500 baht/day. The maximum fine for overstay that you can pay is 20,000 baht after this you may face deportation at your own cost or imprisonment.

Visa extension:Visas can be renewed for a fee at immigration points. The cost is 1900 baht for 7 days extra and it can be extended only once. If you leave the country and return, your visa will be renewed for free. You can exit and re-enter the country as many times as you like this way and most travel agents can arrange border runs to neighbouring countries.

Vietnam:

Visas for entering Vietnam must be arranged in advance. You can do this at the Vietnamese embassies in whichever country you are in and some travel agencies also offer the service.

The service will email you a letter of approval before you travel which you must show to the airline before you board the plane. When you arrive at the airport then you must show the letter, pay a fee of $10 USD and receive your visa. You will not be allowed to board the flight if you do not show either a visa approval letter / or a valid visa.

Depending on where you apply for it and how long you mind waiting, (on average from 1 day to 4 days), the Vietnam visa can cost anywhere between $35 and $65 for a 30 day visa. You will need one passport sized photograph and your passport must be valid for at least 6 months upon entering.

You can also apply for 90 day visas, which have been issued for more than a year, costing US $100.00.

If you apply via Vietnam Airlines, the initial application for a single entry visa will cost $18, then a further $25 “stamping fee” will be charged on arrival in the airport, when you collect the visa. The $18 gets you a letter of approval, which must be printed out and taken to show the Airlines when boarding the plane. The letter, along with two passport photos and $25 in cash, must then be given to the Immigration Office upon arrival in return for your visa.



Visa extension: 30 day extensions can be obtained from travel agents in Hanoi, HCMC or Danang. The process can take up to 5 days and the fee is usually US$30.
-1

Allow me to ignore certain files/directories only in the Find in Files dialog

Colby Blaisdell 12 years ago updated by Fredrik Ehnbom 12 years ago 1
When I'm running a find across my entire project I never want to search in my logs as well. It's frustrating when my logs have hundreds or thousands of references to a particular string, and I only want to see that string in the application code itself.
-1

Typing a find term (when replacing text) should not clear selection

Brian Kim 12 years ago updated 12 years ago 1
When I am trying to do a search and replace on a selection, typing a find/search term clears my selection as it highlights the first match in the selection. This is really annoying as I then have to recreate my selection.
-1

Search erroneously reports the "selection".

Sean Vikoren 12 years ago 0

I has selected 'isSupportedProviderNameKey ' from a web page, and then searched the project for this token, not noticing that there was a space, but the line in the Find pane read 'Searching "isSupportedProviderNameKey"', omitting the trailing space.  Unfortunately, I was unable to reproduce this and did not think to screen shot it, but thought it would be nice to have it documented anyway.

-1

Macro doesn't record copy command

aristidesfl 13 years ago updated 13 years ago 2

I tried to create a macro which copies the current line.


The macro didn't recognize the commands and doesn't allow me to save it.

-1

windows installer needs to check for previous install

jason hendry 13 years ago updated by Jon Skinner 13 years ago 1
when installing, it is normally good practice to remove the previous instance. i can appreciate this is a lean editor, however, i had the previous instance open and the installer failed because the binary was locked. uninstalling the previous version should alleviate that problem.
-1

Open Recent Hotkeys

Andy Joslin 12 years ago 0
When the 'File' menu is open, press 1 to open the most recent file in the open recent menu.  Press 2 to open the second most recent file, etc.

Will make open recent quicker and should be easy.