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

0

Add a "completion trigger" option to completion files

Niabr 9 year бұрын 0

For large completion files that take over the suggestions box, having a a "completion trigger" would be helpful to trigger certain completions, for example:

{

...

"completion trigger": "M-",

"completions":

[

...

]

}

would cause sublime to only suggest the completions in the file after the user types "M-". This could be used for auto completing common methods, like ".length()" in java would be completed with "M-length", but not when trying to type a variable name, like "length".

0

Embed search results view in the current tab like NotePad++

Praveen Kumar 9 year бұрын 0

I am fan of Sublime text editor and it's awesome in searching capability. The only thing I don't like is the search results are in a new tab. This makes us to switch b/w search results tab and actual files hit.


I feel if we can have a small search results view in the bottom like NotePad++ it would make the editor better in-terms of search experience. Great work!!

0

is SublimeREPL dead? Alternatives for R?

becritical 9 year бұрын 0

The git space seems dead, I see a lot of PR in the queue, no activity in the issues, old code. I find REPL unstable and wondering if there are alternatives, it's a pity beacuse sublime text is a great tool for R but the unreliability almost forces me to switch to R studio.

0

separate keys for navigating between places in snippets, and for autocompleting within a place

mako yass 9 year бұрын 0

EG, I am going through the snippet

for(int ${2:i}=0; $2<${1:count}; ${3:++$2}){

${0:/* code */}
}

My cursor starts at ${1:count}, and I want to type itemChainAngles.size(). Naturally I type itan<tab> to autocomplete to 'itemChainAngles', but of course this leaves the count variable as 'itan'
and moves me to the next place, ${2:i}. It would be good if it were possible to assign a different key to moving between places in a snippet than the one we use for autocompletion. I don't see any keybindings for moving between places, so it looks like, if its possible at all, I would have to rebind autocompletion to something less opportune than <tab>. You can see how this would not be ideal.

0

Shift-click and Ctrl-click to multi-select tabs for dragging like in Chrome

entheh 9 year бұрын 0

It would be nice if:

- Multiple file tabs could be selected at once;

- Ctrl-click would add or remove the clicked tab;

- Shift-click would select a range of tabs;

- Ctrl-Shift-click would add a range to the selection.

Then the set of tabs selected could be dragged out into a new window or between windows, as is already possible for single tabs.


Google Chrome implements this if you want an example. Bizarrely I first had a dream in which it was possible in Chrome, then woke up and tried it and it worked!

0

Show Build Results hot key

Tom L 9 year бұрын updated by Keith Hall 8 year бұрын 1

This would be extremely useful when I want to reopen the build results, without having to use a mouse to click through the menus.

0

Totally/Ultimate Distraction Free Mode

Александр Третьяк 9 year бұрын 0

I'd like to have black sides in Distraction Free Mode.
So that it will look like this:

Image 404


Rather than what is now:Image 405

0

File change tracker

ginkod 9 year бұрын жаңартылды 9 year бұрын 0

Currently, there seems to be no way to visibly track files after a change. I think this is an imperative feature especially if you are working on very large projects and make changes to substantial amount of files daily.


It would be nice to see your directory and file(s) with a colored icon or filename in a different color to mark that a change has occurred. I think this would be a very valuable feature in sublime. Thanks!

0

Multiple monitors snapping

Danielduel 9 year бұрын жаңартылды 9 year бұрын 1

If I have sublime text maximized on 2 monitors in Windows and I choose grid 3:

The first monitor should be 2 cells [(monitor width - project explorer)/2 width each] and project explorer

The 2nd monitor should be 1 cell.


4 cells:

The first monitor should be 2 cells [(monitor width - project explorer)/2 width each] and project explorerThe 2nd monitor should be 2 cells [(monitor width)/2 width each].

0

Text should be selected when tabbing into a new field

Lee Campbell 9 year бұрын 0

When I bring up the Replace panel (Find | Replace...), the text in the "Find What" input is fully selected. That's expected. However, when I tab to the next field, "Replace With:" the cursor is placed at the end of the existing text. The expected behavior would be to select all the text in the destination field as you're using the tab key to move into that field.