+3

illumos version

Damian Wojsław il y a 12 ans 0
Would there be a chance of getting version for illumos based systems, say OpenIndiana? I am very happy with Windows version and would love to use it on my primary system.

 

+3

Get inspiration from "Learnable Programming" by Bret Victor

vladstudio il y a 12 ans 0

An excellent article about programming environment:

http://worrydream.com/LearnableProgramming/ 

Discussion:

http://news.ycombinator.com/item?id=4577133 

If only Sublime Text could implement at least some of great ideas expressed there, how awesome it would be!

+3

How do I specify a folder name in a project?

Jon Culver il y a 13 ans mis à jour par Remy Bach il y a 13 ans 1
Exactly as mentioned here, from the original FAQ:


Can I specify a 'name' for my project folder directories?
+3

"command": "show_overlay", "args": {"overlay": "goto", "text": "xxxx"} does not auto select first one

MoonFruit il y a 11 ans 0

such as the title

when run:

"command": "show_overlay", "args": {"overlay": "command_palette", "text": "xxxx"}

sublime text auto select the first one, but when run:

"command": "show_overlay", "args": {"overlay": "goto", "text": "xxxx"}

sublime text does not auto select the first one, so I must press down key to select it

Is this a BUG?

+3

Add "Exclude folder" in the context menu

Ali Akhavan il y a 11 ans 0

My workflow for setting up a project involves adding a parent directory which is often too large. Then I need to manually add the excluded folders in the project definition. 


It would be nice and time-saving to be able to exclude a folder by right clicking on a folder and do it right there. 

+3

"Close Window" command missing

Oktay Acikalin il y a 14 ans 0
I cannot find a command to close the current window as a complement for "New Window". I often need to open another window in order to peek into another project for reference or whatever. After that I would like to close it via keystrokes and not having to use the mouse.
+3

Delete File Callback

Eric Martel il y a 13 ans mis à jour il y a 13 ans 1
A on_delete Event callback would be useful. I wrote a small Perforce plugin and it could benefit to mark files as deleted automatically when they're removed from the editor
+3

Multiple syntax highlighting in one document

Peiman Khosravi il y a 11 ans 0

Is it possible to use different syntax definitions in the same document?


Thanks

Peiman


PS I sent a message a few minutes ago but I think it didn't go through. So apologies in advance if I'm posting the same question twice.

+3

The dock icon in build 2181 for the Mac is blurry

Jason Marr il y a 13 ans mis à jour il y a 13 ans 0
Image 95
+3

Use period for tab-completion

Jeff Cohen il y a 12 ans 0
Although hitting TAB is reasonable for some completions, it would be awesome if the period could also act as a completion character as well as insert a period character.  Often I'm completing a local variable name that is an object, and it would be sweet to just type a period to complete the variable name and begin to call the method on it.
+2

edit build systems

alphashuro il y a 8 ans 0

Every time i want to edit existing build systems its a pain to find the folder they exist in my current os, please add a menu option to quickly open a .build system and edit it

+2

keep highlighting in copy/paste to document

Guillaume Jullien il y a 8 ans 0

I would like to be able to copy snippets from Subliem into LibreOffice without loosing the highlighting of my code.

+2

Option to show number of files in folder or count files and folders in a project?

Kummah il y a 8 ans 0

I would like to be able to count number of files and folders in selected directory/project and maybe even have the option to display the count next to the folder name, something like:

Image 395

or maybe to have it work on mouse over event, or: right click -> file/directory count?

I often simply depend on the ability to see how many files are in a folder so I either have to count them manually or have to open the terminal to check this information out.


+2

Full HiDPI / retina support!

Aco Strkalj il y a 8 ans 0

Make all icons and image files HiDPI/retina supported. Currently those X-out icons are pixelated images...

+2

un-indented line after closing php tag

cresus18 il y a 13 ans mis à jour par Alex van der Vegt il y a 12 ans 3
I have noticed a new bug introduced with the latest build 2181 which is rather annoying.

Suppose you were to type some PHP interlaced in some HTML, with some levels of indentation, as follows:

<div clas="level-1">
    <div class="level-2">
        <?php if(true): ?>
        <p>true</p>
        <?php elseif(false): ?>
        <p>false</p>
        <?php else: ?>
        <p>???</p>
        <?php endif; ?>
    </div>
</div>

When you close the PHP after 'elseif', 'else', or 'endif', it un-indent the line automatically by removing one tab.

This doesn't happen for the 'if', but also happens when using 'endforeach' and endwhile', and probably other similar PHP condition keywords.

This bug doesn't occur if you were to use curly brackets '{ }' instead of semi-colons ':'.
+2

This is a really nice setup so far, a more functional search option would be appreciate, something like editpad pro. The only major con i have noticed is on my remote desktop at work the application runs extremely slow.

Protocol-X il y a 13 ans mis à jour il y a 13 ans 0
This is a really nice setup so far, a more functional search option would be appreciate, something like editpad pro.  The only major con i have noticed is on my remote desktop at work the application runs extremely slow.
+2

Open Containing Folder error when directory path contains comma

c kent il y a 12 ans 0

If the directory path of an open file contains a comma Sublime Text 2 will throw up an error when the 'Open Containing Folder...' context menu item is selected.


Eg:


E:\Web Dev, Sites\Example Folder\My File.html

+2

Start Sublime with wildcards to load multiple files at once

Marc Scheuner il y a 12 ans mis à jour par clksucat il y a 11 ans 3
I like Sublime - a lot - but the fact it doesn't support printing, nor does it support starting the editor with wildcards to e.g. load all *.html files in a directory is something I truly miss - A LOT!!

Any hope that starting Sublime with wildcards will some day actually load all those matching files in the directory??
+2

Space characters after a non-ASCII Unicode character do not display.

Dan Palmer il y a 13 ans 0
When a space character appears in text after a Unicode character that is not in the direct ASCII subset, the space is not rendered or even present it appears. When moving the cursor and deleting text, it appears to not exist.

The problem has been confirmed by opening the same files in TextMate where they are displayed correctly.

Thanks to @elliottcable for helping to work out exactly what was going wrong.
+2

Drag and Drop Text Copy/Clone

Brian Kim il y a 12 ans mis à jour par Tim Gummer il y a 11 ans 3
I see that drag and drop to move text is now supported in the nightly build (thanks!), but I still would like to see a feature I liked in TextWrangler/BBEdit -- hold down option/alt while dragging to copy/clone the dragged text, rather than move it.