Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.
Схожі теми не знайдені.
+24
Use "sticky headers" to display current class and method
This idea is not specific to Python, and would probably be useful if implemented generally based on indentation, but I'm going to describe it in terms of Python for clarity.
I often use "go to definition" to jump directly to a method. But it's sometimes hard get context because I can't see which class the method is inside of - I have to scroll up, sometimes really far, to see what the class is.
My idea is to reserve one line at the top of screen for each level of indentation of the current line. Then show the "parent" line as a "sticky header" at the top of the editor. The "sticky header" is often found in iOS, for example the contact list. Here's a video that illustrates the point. The class would always be visible on the first line, the method visible on the second. Maybe it could be useful to go further than this and make if statements and loops sticky, but I'm not sure about that.
Here's an example of the code review tool Phabricator doing this. Note the line number of the class is 185, but the first line shown is 201. The rest of the body has been collapsed so that the class line remains visible for context.
For a more extreme example, consider the following 5 line display. Obviously on such a small display the lines lost to headers reduce the amount of space you have to see the actual body, but a small example makes it easiest to see how this would work.
I often use "go to definition" to jump directly to a method. But it's sometimes hard get context because I can't see which class the method is inside of - I have to scroll up, sometimes really far, to see what the class is.
My idea is to reserve one line at the top of screen for each level of indentation of the current line. Then show the "parent" line as a "sticky header" at the top of the editor. The "sticky header" is often found in iOS, for example the contact list. Here's a video that illustrates the point. The class would always be visible on the first line, the method visible on the second. Maybe it could be useful to go further than this and make if statements and loops sticky, but I'm not sure about that.
Here's an example of the code review tool Phabricator doing this. Note the line number of the class is 185, but the first line shown is 201. The rest of the body has been collapsed so that the class line remains visible for context.
For a more extreme example, consider the following 5 line display. Obviously on such a small display the lines lost to headers reduce the amount of space you have to see the actual body, but a small example makes it easiest to see how this would work.
class LineZero(object): first_line = "bar" def second_line(self): third_line = "baz" fourth_line = 42Right now if you scroll that, the class line disappears from view:
first_line = "bar" def second_line(self): third_line = "baz" fourth_line = 42 fifth_line = 5I'm proposing that the class statement (as the root node in the tree of indentation) become "sticky", so instead the first line of the class scrolls out of view like this:
class LineZero(object): def second_line(self): third_line = "baz" fourth_line = 42 fifth_line = 5Then if you scrolled one line further, the method line would be sticky, and the first line of the method body scrolls out of view:
class LineZero(object): def second_line(self): fourth_line = 42 fifth_line = 5 sixth_line = None
+23
Custom GUI for output panels (html based?)
I just started evaluating sublime text – it's beautiful, but one thing is stopping me from deciding to switch to sublime from textmate.
I (quickly!) wrote a PostgreSQL plugin that executes the current paragraph through psql and shows the output in a panel. The output however is text only and there seem to be no way to format it decently... (same goes for quick html preview, markdown preview and similar)
Any chance you're adding support for GUI output panels?
Being able to display an html file (and pass it some js object/variable) would be great and allow for previews and custom GUIs alike....
+23
Syntax highlighting for files without extensions (like Rakefile, Gemfile)
I'd love to be able to set syntax highlighting for files that don't have extensions, like Gemfile, etc through the 'View' > 'Syntax' > 'Open all with current extension as...' menu.
+23
Multiple open windows to the same file use the same edit window instance.
Currently in the latest dev version of sublime if I have the same file open in multiple windows, edits to the same file are not synchronized across windows. This results in me saving a version in one window and then auto reloading it another will cause me to lose all the changes I made in the other window.
In emacs multiple open panes and views are always editing the same buffer so edits are automatically propagated across the views. It would be really nice if Sublime text behaved in this way.
In emacs multiple open panes and views are always editing the same buffer so edits are automatically propagated across the views. It would be really nice if Sublime text behaved in this way.
+23
Allow dragging files out of the sidebar and into different applications
I use a Mac, and I've come to pretty much expect anywhere I see a file to be able to drag it to different applications. While you have implemented the file icon in the title bar thing, which is brilliant, I can't drag a file from the sidebar into another app.
For instance, if I have a .html page I want to open in my web browser, I find myself naturally dragging it into my Chrome window, only to find it didn't work.
If you could implement this, I'd love you forever.
+23
Side Bar doesn't update on moved files
Currently when a file is moved into a project that is opened in sidebar, the containing folder doesn't show that file until I force some other changes in that folder (like create/remove some files).
When file is moved from one folder in project to another folder in project, then file disappears from the previous folder but doesn't show up in the new folder until I force refresh the new folder again.
Usually I move files with terminal either:
* mv /path/to/file.ext /path/to/new/location/file.ext
* git mv /path/to/file.ext /path/to/new/location/file.ext
Possible fix would be to change the way folders are monitored for changes or adding a another context menu item 'Refresh' when a folder is right clicked in sidebar.
System I am working on:
* 32bit Ubuntu Linux 10.04LTS (Lucid Lynx)
* GNOME v2.30.2
* Sublime Text 2 v2091 (but the same happened on all previous Sublime Text 2 releases)
Thanks!
+23
Tab groups
Like Firefox's "Tab Groups" feature it would be really useful to have a way of saving a particular set of files and screen layouts for a project.
I often open a certain set of files and change the panel layout when i'm working on one feature but need a different set of files and layout for another feature. It would be great to be able to save these layout groups and flick between them like projects.
+23
Add option to close tab by double-clicking it
title says it all. Can be found for example in Opera and NotePad++. Once the option is there, logical next step would be to add one that hides the close button on the tab.
+23
Insert Tab vs. Paste Tab
If indentation settings are "indent using spaces", then auto-indentation and the TAB key should insert spaces.
When a TAB character ("\t") is pasted from the clipboard, it should remain a tab character.
Служба підтримки клієнтів працює на UserEcho