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

+4

Single window mode not being supported in Full Screen Lion

Paul Arterburn 13 år siden 0

My prefs:

"use_simple_full_screen": false,

"open_files_in_new_window": false,


These are not working together...if I have SublimeText in the new full screen OS X Lion mode and open a file from Transmit it will still create a new instance window in the same workspace as transmit. I would expect it to open a tab in the full-screen SublimeText already open.

+4

Update Rails snippets

Michal Gritzbach 13 år siden opdateret 13 år siden 0
I'd really love to see Rails snippets updated to the most recent version, 3.2, e.g. form_for and inline ends (-%>; hate them).
+4

Draw a border around groups if scrollbars are overlayed i.e. Lion

Chris Guilbeau 13 år siden opdateret af Vincent Côté-Roy 13 år siden 1
When you have multiple groups and no file is selected yet, there is no distinction between where the groups begin and end. If you have scrollbars overlayed (as Lion does by default) there's no break between files unless you have minimap or line numbers turned on, and even then it looks a little messy.

Perhaps just a setting to change the background color of the gutter?
+4

Indentation for PHP broken

Bart Dabek 12 år siden 0

Case statements do not properly work with indentation... 


the line echo should be indented one tab over... also comments really mess with the indentation within php... 


switch (variable) {

case 'value':

   echo 'vv';

   break;


   default:

# code...

   break;

}

+4

Templates for creating new documents of different types

Dan Blanchard 13 år siden opdateret af Thierry Goettelmann 13 år siden 1

 I'm not sure if this is just hidden somewhere and I'm unaware of it, but it would be really nice if ST2 had a set of templates that you could choose from when creating new documents. 


I used this feature all the time when I was using TextMate and would create new LaTeX documents that already had all of the preamble crap already in there so I didn't have to type it every single time.

+4

Awesome, awesome work!

dutzi 13 år siden opdateret 13 år siden 0
Definitely the BEST editor I've seen for mac. Kudos!
+4

Asymmetric three-pane layouts

Idan Gazit 13 år siden opdateret af Rob Miller 12 år siden 4

I often find myself desiring a pane layout that looks like this:


Image 40


Usually it is because I am hacking on one file, and need two others as reference beside it.


The existing side-by-side three-pane layout is too narrow for me to get 80 columns in each editor.


I'd love to see a layout like this in sublime.

+4

Running python through SublimeREPL with command line arguments

Stephen Andrews 12 år siden opdateret 11 år siden 3

I am running python through SublimeREPL, but my code takes command line arguments. In my old editor, DrPython, you could set variable in the editor, eg. $args, to be a string which was passed to the python code.

I am using SublimeREPL because i make a lot of use of pdb and like the interactive debugging features.

This is how i currently run my python code via a shortcut

{ "keys": ["f8"], "command": "repl_open",

  "caption": "Python",

  "mnemonic": "p",

  "args": {

  "type": "subprocess",

  "encoding": "utf8",

  "cmd": ["python", "-i", "-u", "$file"],

  "cwd": "$file_path",

  "syntax": "Packages/Python/Python.tmLanguage",

  "external_id": "python"

  } }

what i would like is to change one line to

  "cmd": ["python", "-i", "-u", "$file", "$args"],

where $ for example

You would be able to set the $args variable to be a property of the view which can be set by a command and then revert to a null string when the view is closed.

I am not very familiar with customising Subline so my questions are

1) Is there a package that already does this or something similar?

2) If not, would it be possible to implement

3) If so, any suggestion about how to do it

4) Am i calling python the wrong way? Is there a different way to run python scripts which would make my life easier?

and finally..

5) since no one else seems to have this problem, is it poor form to use command line arguments for python? I like the arguments because i can use them to build nice bash scripts to run a series of simulations with different names and properties. Is there a better way to do this?

 
+4

Make a static link to latest stable, alpha, and dev builds. Such as http://www.sublimetext.com/sublime-v2-dev.tar.bz2 will always be the latest dev build. 'sublime-v2-stable.tar.bz2 will always be latest stable, etc...

Shawn McElroy 14 år siden 0
Make a static link to latest stable, alpha, and dev builds. Such as http://www.sublimetext.com/sublime-v2-dev.tar.bz2 will always be the latest dev build. 'sublime-v2-stable.tar.bz2 will always be latest stable, etc...

This way people on the net, or people making scripts can point to a stable, alpha or dev version to always get the latest without having to know the exact build number.
+4

Customize how unsaved files are named in tabs / sidebar

Misty Stanley-Jones 13 år siden opdateret 13 år siden 0
If you create a new plain-text file, its first line becomes the displayed name for its tab or sidebar item. This is extremely useful for having multiple "scratch" type items. This feature stops working for XML and other file types where the first line doesn't contain something useful.

I'd like the ability to have a per-mode regex to find what the "name" of an unsaved file should be. Some ideas for different modes:

* Docbook or DITA XML: Look for the first <title> element
* PHP, C, shell scripts: Look for the first appearance of "Name:" inside a comment

To understand why this might be useful, let me tell you a little about my workflow. I write in Docbook all day long. The finished Docbook files are saved in an online CCMS, and I use OSX, which saves the state of open files (at least in Sublime Text). So I don't save my work to local files, because as soon as I update the CCMS my local copy is in danger of becoming out of sync anyway.

So each file I am working on is in a (probably unsaved) tab in Sublime Text. I currently have one window with 13 different (related) files in this state. Saving each of them involves coming up with a good displayable name for it, so that the tabs remain useful to me. My current workaround is to keep my file in "Plain Text" mode until the last minute, with the first line of the file being what I'd like to see in the tab. It's a bit silly, because I'm losing out on some of the benefits of using the mode.

I spoke with a colleague who is a Java developer, and he'd like this feature too.

Kundesupport af UserEcho