+3

Shift + R vim key binding doesn't seem to exist

Stuart Memo hace 12 años 0

In Vim, you can use Shift + R to replace multiple characters. This doesn't seem to work in Sublime. "r" on its own works fine, but Shift + R doesn't.

+3

Python raw string is wrongly interpreted

Jindřich Vavruška hace 11 años 0

The editor wrongly interprets python raw string. Any occurrence of "\" is interpreted as escape, while in raw string it is not.


Example:


root = r"M:\" 


in python this means that the content of variable root is the path of the root directory on disk M:


In Sublime Text this is wrongly interpreted as if the second double-quote was part of the string, not a delimiter. Therefore the string is unterminated and all following text is broken.

+3

Collapse sidebar groups

madla hace 12 años 0

Folders in the sidebar can be collapsed and expanded. But the main groups (Group1, Group2, Folder) can't be collapsed. Especially when working with a layout groups it would be great if they could be collapsed.

+3

Some clipping occur at some characters when draw_white_space is all. Is this inteded or a bug?

matrushka hace 14 años actualizado por ybakos hace 13 años 4
as seen in http://img220.imageshack.us/img220/721/screenshot20110202at653.png the "@" characted is clipped while i draw_white_space setting is all and font is Monaco. This does not happens when i am using Courier New. Yet it can be observer in some other fonts (i tried "Helvetica Neue" but it is not monospace etc.). So is this an intended result or a bug?
+3

block indent - option to not skip blank lines

Keith Hall hace 12 años 0
Currently when indenting a block of code, it won't indent blank lines.  I would like there to be a setting to change this behaviour.

(It does correctly increase indentation on lines that only contain whitespace - by blank lines I mean completely empty ones.)
+3

ST3: Symbolic links to directories not followed when adding folder to project

Adrian Partl hace 12 años 0

Symbolic links to directories are not followed anymore, when adding a folder with an enclosing symbolic link to a project. This worked in ST2 though.

+3

Inconsistent project / window closing behaviour

Christoph Ruegge hace 12 años 0

When hot_exit and remeber_open_files set to false and I close a window containing a project, the open files will be lost after reopening the project. However, when I first close the project using the menu (or switch to another one) and then close the window, the files are remembered as it should be.

+3

The EasyMotion plugin for Sublime text 2

Jakub Kohout hace 12 años en Plugin announcements 0

Would be awesome to have exactly the same functionality of EasyMotion plugin on VIM for Sublime text 2 :)

EasyMotion plugin in action here: http://net.tutsplus.com/tutorials/other/vim-essential-plugin-easymotion/?search_index=6

+3

Reindent leaves a few characters unselected

Zoran Simic hace 13 años actualizado hace 13 años 0
Select a few full lines and press TAB to reident them: if you are in a mode (python for example) where identation is 2 space characters, you'll notice that every time you reident, ST2 leaves 2 space characters on the first selected line unselected. This is a problem, reident should select fully all lines involved in the reident. A very common scenario when reidenting is:

- select a few lines
- hit TAB to reident (in order to move it to another location with a different ident level)
- cut and paste to the new location

Because ST2 leaves the few characters unselected as mentioned above, the cut and paste is missing these few characters, and now you have to go back and reident again that first line...

When reidenting, ST2 should really fully select all lines involved (even if those lines were only partially selected), that's the best thing to do when reidenting
-
+3

unload_handler is not getting called

Filipe Cabecinhas hace 13 años actualizado hace 13 años 0
unload_handler() is not called when exiting Sublime Text 2.
I have defined it as following:
def unload_handler():
    cleanup()

And, when I exit sublime text 2, that handler isn't being called to clean up. Which sucks because I have child processes that have to terminate cleanly, so the OS doesn't warn me that a program has stopped working.

+3

Parenthesis don't close correctly with nested functions

Craig Campbell hace 13 años actualizado hace 13 años 1
+3

Project wide search failing due to symlinks

Niko Nevala hace 13 años 0
My project directory contains a number of symlinks. When performing a project wide search, the following is output to the "Find Results" tab (without the curly braces):

Unable to open {/path/to/a/symlinked.file}{/path/to/actual/search/result.file}:
111. Search result printed normally here
112. Search result printed normally here
113. Search result printed normally here

Clicking on the search result tries to open the entire mashed up path (ie. "/path/to/a/symlinked.file/path/to/actual/search/result.file") and obviously fails.

Beta, Build: 2139
OS: Mac OS X
+3

Capslock as modifier

Yegor Roganov hace 12 años 0

I'll be definitely usefull to have more potential key bindings such as "capslock+h", "capslock+l" to move left and right respectively.

+3

Snippets tabTrigger can't start with a period

Jake Wilson hace 13 años actualizado por Richard Tape hace 12 años 2
I just installed the official jQuery TextMate bundle.  A lot of the snippet tabTrigger words start with a period, like

.animate

The tabTriggers do not work if the word starts with a period.  I can easily remove the period from the tabTrigger definition in the snippet file and it works fine.
+3

Ctrl+Q for "Quit" on Linux

Skalman hace 14 años 0
It should mean Quit on Linux, like in most other programs.
+3

Use entire pane as drop target when moving tabs

Phillip Koebbe hace 12 años actualizado hace 12 años 7
I use a 2 row layout quite a bit and when organizing tabs, I have to drag all the way to other tab bar to move a tab from one pane to the other. If I drop it too early, a whole new window gets created, which forces me to move it so I can drag and drop the tab again. It would be nice if the entire pane was a drop target and not just the tab bar.
+3

Ability to drag file from sidebar of one window to sidebar of another window

Elias Zamaria hace 12 años 0
I would like to be able to drag a file from one window to another by dragging the file name from the sidebar.

I know that I can do this using the tab bar but I keep it hidden. I don't use the tab bar because it is practically useless if I have more than a few files open.
+3

Portage ebuild

Marcus Downing hace 12 años actualizado por Oscar Campos hace 11 años 2
The correct way to install applications on Gentoo is with its package manager, Portage. It would be nice to have an 'ebuild' available with which to install Sublime Text on Gentoo.
+3

Find in current file should have shortcuts for all

Me Whatever hace 13 años actualizado hace 13 años 0
Hi,

I think Ctrl+F find should have shortcuts for "In Selection", "Highlight matches", "Wrap", and "Reverse direction".

+3

Loading Progress

Ionut Staicu hace 13 años 0
On large files (let's say over 5-10mb) there is some delay since you open a file to when you are actually able to edit that file (the content is displayed).

I guess a progress indicator would be awesome to show a % or at least a spinning wheel.