+1

Keep Find in Files search history

Steve Bernard vor 12 Jahren 0

When using the FInd In Files feature.  It would be great if there was a history of past searches and directories that were searched in.  Currently you have to retype if you happen to search in the same directories a lot and there isn't a history of past terms you searched for.

+1

Undo of closed files

Menan Vadivel vor 12 Jahren 0

Remember the history of edits for closed files and make us be able to go back when we reopen it.

+1

One sublime window for all workspaces!

Ashton Hylton vor 12 Jahren 0

I would really like to have all workspaces to be accessible in one window with maybe some tabs in the bottom right hand corner. This would be great for when working on multiple parts in a project, or other smaller short lived projects.


Ashton

+1

Is it possible to show a semi-transparent overlay from a plugin?

Rory McGuire vor 12 Jahren 0

If would be great if I could make a plugin show an overlay, with whatever I want in it. Even better if I could move it around based on whether it is obscuring text or not.

Could be used for help, autocomplete help/suggest. Coding suggestions and context sensitive cheat sheets.


Thanks for The Editor.

+1

Math expression resolver

Mukah Wagner vor 11 Jahren 0
When you type a math expression, select it and run a shortcut could solve the expression. example: I typed "10 +7", I selected and clicked Edit> Math> Resolve, then it deletes the expression and gives me the result "17".
+1

Enhance project management stability on Linux version

Sebastián Veggiani vor 14 Jahren 0
I'm having problems saving several projects to the same folder. It seems that when you save a project to a folder containing another projects the paths of the folders of the other projects are modified.

I'll try to make some tests later to clarify and confirm this.
+1

Fixes for scala syntax

Matt Hauck vor 11 Jahren 0
The scala language file messes up a bit when it comes to triple quoted strings that contain strings. 

Update the repository.strings.pattern first element to the following: 
<dict>
  <key>begin</key>
  <string>"""</string>
  <key>end</key>
  <string>"""(?!")</string>
  <key>name</key>
  <string>string.quoted.triple.scala</string>
</dict>

+1

Support for inline coffeescript in HTML

Benjamin Lupton vor 14 Jahren aktualisiert von Jason Tackaberry vor 13 Jahren 1

With the introduction of https://github.com/jashkenas/coffee-script-tmbundle


We could support inline coffeescript in HTML. This is done with:
<script src="text/coffeescript">...</script>

Thanks.

Cross posted here as well: https://github.com/jashkenas/coffee-script-tmbundle/issues/66
+1

Problem with reloading files and mouse scrolling

Kevin O'Connor vor 14 Jahren 0

 If an open file is reloaded because it changed and the text is longer than the original window, the scrollbar does not adjust until you hit keys, so mouse scrolling doesn't work.

+1

Folder renaming bug

David Tang vor 13 Jahren aktualisiert von Matt Moore vor 12 Jahren 1
If you change the name of a folder to the same name but change the casing of the letters, the editor won't recognize it and it will still show the old, unchanged name.
+1

Provide an icon for creating shortcuts

Scott Bowers vor 14 Jahren aktualisiert von Jon Skinner vor 14 Jahren 1
I don't know how sublime works in Windows or Mac, but in Linux, there isn't a way to create an shortcut with Sublime's Icon on it. I currently have to use a bo-bo icon for sublime's shortcut.
+1

HTML (Rails) should be HTML (Ruby)

Nelson Blaha vor 12 Jahren 0

.html.erb file extension is used in non-Rails Ruby frameworks. The format should be referred to as HTML (Ruby)

+1

Parameters on javascript functions lost color inside function

jorgemason vor 13 Jahren 0
function ( par1 (color), par2 ) {
   par1 (color white)
}
+1

Release Sublime Text as Free software

Rory Holland vor 13 Jahren aktualisiert von glyph vor 13 Jahren 1
I would pay for a binary of Sublime Text if the sources were distributed for free.
+1

ability to add language syntax bundles in User directory

Vincent Côté-Roy vor 13 Jahren aktualisiert vor 13 Jahren 0
it would be great to have the ability to add language syntax bundles under the User directory, (or perhaps in a separate, optional "User Packages" directory), so that we could maintain our language bundles separately from the default ones. that way one only has to keep track of / update that one folder when moving between machines.
+1

Add `fail` to Ruby special-method syntax

Mads Ohm Larsen vor 11 Jahren 0
`fail` is missing from the special-methods array in Ruby.tmLanguage.

This can simply be added to the list, so it is highlighted.
+1

Temp file for new documents

Yandy Ramirez vor 11 Jahren 0
Would it be possible/feasible so that every "New Document" saved or not automatically creates a Temp file located in a specified location? This could be configurable through the user preferences. Sometimes I code/write something that don't want/need to save and dedicate a file to. But would like to access it from another PC and continue if I forget to save or put in a "scratch file".
+1

Command line option to open files with SublimeText

Andrew Pennebaker vor 14 Jahren aktualisiert vor 14 Jahren 4
TextMate has a "mate" command line script that could open files, e.g. "mate hello.py" or directories "mate ."
+1

Permit <TAB> character to be used for autocompletion in dialogs

Chris Burgess vor 13 Jahren aktualisiert vor 13 Jahren 1
In ST2's quick panel and palettes, a <TAB> keystroke is interpreted as a literal TAB character.

ST2 offers autocomplete results frequently, and in this context a TAB keystroke means "accept default autocomplete" to many users.

I asked wbond about this (in context of his excellent SFTP plugin browser), and he replied,

"I agree with you that it would make sense if the Sublime quick panel would accept using the tab key to select an item. Unfortunately there isn't any way with the Sublime API to do that. I tried adding a key binding with a context so that it would only affect the quick panel, however I could not get it to fake the enter key when I press tab."


I would be a very happy user if ST2 was to either -


1. Treat TAB as ENTER (=accept selected result) in autocomplete contexts, or

2. Permit plugin authors to override the default behaviour of accepting TAB as text entry.


There might be valid reasons for typing a TAB character in a panel, but I think that would be far less common a use case than using it for autocomplete.

+1

Tabs shortcuts like in browsers: re-open closed, move tab

Vincent Voyer vor 13 Jahren aktualisiert von Timo Lehto vor 12 Jahren 4
We should be able to do like in any browser:

re-open last closed tab : ctrl+shift+t (> 1 level of close)
move tab right-left : ctrl+shift+pageUp/Down