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

+8

Copy Syntax Highlighting

radreck 11 year бұрын 0
It would be great if Sublime Text 3 installs with built-in support for syntax copying. I know there are the ST2 plugins called ExportHtml and SublimeHighlight, but they do not seem to work for me (in ST2 nor ST3).

The functionality I am looking for is found in the NotePad++ plugin called NppExport.


+8

change status bar, command palette and tab font size with zoom

Tair Sabirgaliev 12 year бұрын 0

When I use full-screen mode and zoom text, tabs, command palette and status bar remains the standard size.  This is uncomfortable for users with vision problems, eg. they take off glasses, zoom text => happy, but now can't use so much useful command palette, don't see current tab filename and status bar. Thank you!


Image 181

+8

Development is kind of slow?

Andrei Zisu 12 year бұрын 0
Development of ST is kind of slow... it's only a few minor changes over a few months. It's one of the reasons I've been holding my 60$ till now. 

Maybe you should consider opensourcing the whole thing to speed up development? 
+7

It would be nice to have an preference option to set background transparency.

ana_st 6 year бұрын 0
+7

RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL !!!!!!

Osama Qawasmi 8 year бұрын 0

please ADD RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL RTL !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

+7

Pasting lines to multiple cursors

colinta 13 year бұрын жаңартылды 12 year бұрын 3

I'm using ClipboardManager, so it might be that this is a problem with the plugin. But I doubt it — the behavior is too weird, and all that ClipboardManager does is `self.view.run_command('paste')`.

When I copy, say, a word, and then place a few cursors and paste, it is pasted correctly.

But when I select a line (including the NL at the end - that's important) and then copy and paste that to multiple cursors, only the first cursor pastes. So it has something to do with pasting a "line" instead of "words".

Just to keep things interesting, if I copy multiple lines instead of just one line, it pastes fine again.

+7

Ignore comment-only lines when guessing indentation of buffer

Joel Thornton 12 year бұрын 0
Comment-only lines should be ignored when guessing the indentation of a buffer.


The problem applies to JSDoc comments; with a buffer looking like this:


/**
  * @class
  * Class description.
  * Next line
  * Next line
  * Next line
  * @constructor
  */
var SomeClass = function() {
    this.foo = 1;
    this.bar = 2;
}
/**
  * @class
  * Class description.
  * Next line
  * Next line
  * Next line
  * @constructor
  */
var SomeClass2 = function() {
    this.foo = 1;
    this.bar = 2;
}
 

... Sublime Text 2 guesses an indentation width of 2. However, the code actually has an indentation width of 4, but ST2 is taking the apparent indentation of the comment blocks into account.

+7

Fast tabs closing

Fabrice Laporte 13 year бұрын жаңартылды 13 year бұрын 0
Fast tabs closing with mouse is not feasible yet in ST as tabs size expand during the process.

Imo, Chrome browser nails it perfectly < http://blog.chromium.org/2009/01/tabbed-browsing-in-google-chrome.html > :

Realizing that maintaining a fixed width for tabs when closing them would keep close buttons aligned under the mouse pointer, we designed a system whereby the tab strip will re-layout when you close a tab to fill the gap left, but not resize the remaining tabs, until you move your mouse away from the tab strip (thus signaling you're done closing tabs). 
+7
Аяқталған

Have sidebar closed by default when editing single files

aristidesfl 13 year бұрын updated by Jon Skinner 13 year бұрын 4
Most of the times I just want to edit a single file and close sublime really quick, yet right now, I'm always presented with Sublime's "project mode" sidebar.

This prevents me from using Sublime as everyday all around text editor since the experience is not pleasant.

Besides that there should be not tabs if a window only has 1 file open.

The same goes for new windows, where a new file is created automatically.. not very sublime to have to take with a sidebar when all I want is to write some text..

cheers :)
Answer
Jon Skinner 13 year бұрын
You can hide the side bar from the view menu
+7

API: Enhance view.get_symbols() to return arbitrary symbol list

bizoo 14 year бұрын updated by Oktay Acikalin 14 year бұрын 1
As requested in this post http://www.sublimetext.com/forum/viewtopic.php?f=6&t=1407&start=0 , I fairly often need to find where symbols are in a source.
Actually get_symbols() only return the symbols defined in "showInSymbolList" (Goto Symbol) and you don't have any option to find something else.

I propose to add a parameter to get_symbols (or create a new function) to specify the symbol(s) to return.

Example:
view.get_symbols("source.python meta.function.python") return the list of Regions containing function declaration in a python source.