+7

CTRL+delete should delete by subwords not by entire word.

Nithin Reddy vor 13 Jahren 0
On OS X, CTRL+right and CTRL+left navigate by subword, but CTRL+delete doesn't delete by subword.
+7

Highlight trailing whitespace

Felix Yuan vor 14 Jahren aktualisiert von Oktay Acikalin vor 14 Jahren 3
In some of our older files there's a lot of trailing whitespace. I don't want to turn on trim trailing whitespace because it would nuke our files and cause a lot of merge conflicts, but I also want to avoid writing it.

Turning on drawWhiteSpace to all is kind of overwhelming. Is there a way to highlight only the trailing white space.
+7

vertical tabs

Robert Teshinsky vor 11 Jahren 0
Have the tab list of open files be move-able to either side, with tabs in a vertical list.
Image 273
+7

Custom auto-closing

Z . vor 12 Jahren aktualisiert von Sean Swezey vor 12 Jahren 1
Can we write custom auto-close pairs? Currently it's like
{'[':']', '{':'}', '(':')', '"':'"', "'":"'"}

and maybe some others, and you can either enable everything or disable everything. I like most of them, but when I do clojure work, ' isn't a closeable thing, and it would be really nice to disable just that.

+7

Show current line in mini-map

Jonathan Graham vor 12 Jahren 0

Similar to how Find highlights your search results in the mini-map, it would be great to turn on highlighting of the current line in the mini-map.


Thanks!

+7

What about a spell checker?

Richard Hurt vor 14 Jahren aktualisiert von James Brooks vor 13 Jahren 6
I am a horrible speller and would like to be able check my documents for spelling errors with a key press. I don't think it would be necessary to build a spell checker into SublimeText2 but I would like to be able to use a platform one (e.g. aspell on Linux, etc.)
+7

Hide folder or files from search but not from sidebar, per project.

Adriano Resende vor 9 Jahren aktualisiert von Cristian Yáñez vor 8 Jahren 1

I not found for this solution, if exist this feature, what is best way for to hide files or folder from search but not from sidebar, per project (.sublime-project) ?

In Stack Overflow, Jay say:

For Sublime Text 3: To exclude from search and GoTo results, without removing from the sidebar, change the "binary_file_patterns" setting. Matches files AND folders.

I can't figure out how to implement this on a per-project basis :(. Most settings can be moved to a project.sublime-project file. "Project > Save Project As", save it the root of your project, and add "settings": {...} to the json in the generated file. (from source, works as of ST3 build 3095). But does not work with "binary_file_patterns".
More detail: http://stackoverflow.com/a/25904115/868003

+7

Indent for Parenthesis in PHP

Brian Gottier vor 13 Jahren aktualisiert von Алексей Марчук vor 11 Jahren 3
It is very common for a closing parenthesis in PHP to indent to the same level as the line above it, but Sublime adds another tab. It would be great if Sublime would move the indent to the same level as the first line.
+7

pragma region (c++) support to be able to close and expand regions like we can open and close functions, thanks a lot and great work!

Nawid Haghgoo vor 12 Jahren 0
pragma region (c++) support to be able to close and expand regions like we can open and close functions, thanks a lot and great work!
+7

Add the ability to exclude comments when searching

chaiguy vor 12 Jahren 0

It would be super handy if there was a button added to the search bar called "include comments" that could be disabled to only search non-commented code.


This would be great if you're looking for every instance of a particular identifier, but don't care about commented-out code.

+7

Add "New View into File" to context menu of file tab

Drew Pirrone-Brusse vor 12 Jahren aktualisiert von Michael Gritsaenko vor 8 Jahren 3
It took me a disappointingly long time to find the `File->New View into File` command, and until I did I honestly thought that Sublime Text 2 didn't have that functionality built in. I feel that it would both be more intuitive and very handy to have that command added to the context menu opened when right(or cmd)-clicking a file's tab.
+7
Fertiggestellt

Add possibility to hide/disable "close tab" button

Metin Amiroff vor 14 Jahren aktualisiert von Daniel Quality vor 7 Jahren 4
Imagine a scenario where you've got lots of files open in one window and the window is narrow. Tab widths get so small that when switching between them using mouse rapidly it's really easy to accidentally hit close button. Say you don't want to use keyboard shortcuts and left pane. An option to disable close tab button would be nice, as middle mouse button could be used for that purpose.

See http://www.twitpic.com/3w20rc/full
Antwort
Jon Skinner vor 13 Jahren
This was added in build 2091
+7

No cursor in minimap

Skip vor 14 Jahren aktualisiert vor 13 Jahren 1
The cursor position is not shown in the minimap, but in Sublime 1 it was shown.  Normally this is not an issue, but when you do multi select, with the arrow keys, you have no idea where all the cursors are without scrolling.
+7

Add Gemfile and Guardfile to Ruby.tmLanguage

Michael T Glenn vor 13 Jahren aktualisiert von Jeffrey Horn vor 13 Jahren 1
Add Gemfile and Guardfile to the filetypes array for the ruby language file.
+7

Simultaneous scrolling

Paul Verbeek vor 13 Jahren aktualisiert vor 13 Jahren 0
The option to scroll each visble document at the same time when using a layout that shows multiple documents.
This is for searching for inconsistencies between multiple documents
+7

Add API for file preview

dearlt vor 13 Jahren aktualisiert vor 13 Jahren 0
I'd like to see API support for file preview.  Something like window.preview_file(...).  And, in the show_quick_panel, have a callback for on_select that triggers when a row is selected (but before hitting enter or clicking with mouse).
+7

symbolic links to files inside project directory tree

Daniel Brün vor 12 Jahren aktualisiert von Oktay Acikalin vor 11 Jahren 1

In my project there are a couple of symlinks to other files in my project, which is quite common in a symfony2 project. In sublime's project-tree the original files are not displayed (the directory they're in is empty), only the symbolic links are shown - which is odd.

+7

multi screen/windows in one project.

David Johnston vor 11 Jahren 0
I often find myself coding across both my monitors and have one bugbear.
Scenario.
Open project.
Shift+Alt+3 give me nice usable cols
Find I need to view a few more file at the same time Ctrl+p open file.
Drag over to screen 2.
Shift+Alt+3
Now I have 6 cols to play with yay!

My problem is that the new window is not a child of the first so I can't Ctrl+p there I have to return to the original window open the file and drag it to window 2.

It would be great if window 2 could be part of the window 1 project.
+7

word_wrap setting is ignored.

Gábor Farkas vor 14 Jahren aktualisiert von Thomas Jachmann vor 13 Jahren 4
i have the following in my UserFilePreferences:


{
"font_face": "Monaco",
"font_size": 12,
"tab_size": 4,
"translate_tabs_to_spaces": true,
    "word_wrap": true
}

but when i open python files, word_wrap is off.
the other settings from the preferences file are applied.

if i select word_wrap from the menu, it correclty switches word_wrap on.

i'm on osx, sublimetext 2, build 2020.
+7

Unsupport Unicode character

Calvin Tam vor 13 Jahren 0

Try to open a file which have Chinese character...

They are 'too' close!!!