+2

OS Specific Settings Files

Zachary King 12 year бұрын 0

We already have this for keybindings, but I would like the other settings files to allow for a (OSX) etc. in the file name to identify the OS, and then have them merged on run. This would be useful for me, since my Mac as a much higher pixel density then my windows computer. This requires bumping up my font size several notches every time I switch computers.

+2

OS X Services integration

Boris Yurkevich 12 year бұрын 0

In Finder you must be able to add folder to Sublime project like BBEdit does. Please watch the pic

Image 187

+2

Save a copy as...

a n 11 year бұрын 0
It would be nice to be able to save a copy of the open file under a different name, for a backup, and continue working on the file.
+2

Support Emacs-style in-buffer syntax settings

Brian Clapper 13 year бұрын в Plugin announcements updated by Kai Grossjohann 13 year бұрын 1
GNU Emacs has a useful feature that allows an individual file to override the default Emacs mode (and, hence, the associated language syntax and colorization) by using a special magic string somewhere in the first non-blank line of the file. For instance, if file foo.C would normally be displayed using C syntax rules, but you want to force Sublime Text 2 to use C++ rules, simply include a comment like this in the first non-blank line of the file:

//           -*- c++ -*-

This feature is useful for overriding the default language on a per-file basis.

I've implemented a plugin that provides this capability. It's in this GitHub repo:
+2

Distraction free mode needs an "ignored_packages" setting

Jared McGuire 13 year бұрын жаңартылды 13 year бұрын 0
Distraction free mode needs an "ignored_packages" setting, so that I can enable or disable certain packages for this mode.

I created a plugin that keeps the page vertically centered while you type, similar to the Mac application Writeroom, but I only want this plugin to be enabled for distraction free mode.

Is there some other way to do this, maybe from within the plugin? 
+2

missing FTP

mostafa qanbary 12 year бұрын 0

the only thing that keeps me away from using sublime is FTP!!

+2

Ubuntu Software Center

Andi McCollam 11 year бұрын 0

Please consider making Sublime Text available through the Ubuntu Software Center for easier installation.

+2

Link to download the latest version of each build

Dimitris Zorbas 11 year бұрын 0
I'm configuring a script that i commonly use to setup my development environment.
I want to enable the script to download the latest version st without having to perform web scraping actions on the download page to get the correct link.
It would be convenient for the use case described if a url like /download/linux/64/latest.deb existed.

Thanks.


+2

Remote agent for editing remote files locally.

Miguel Cabeça 12 year бұрын 0
Separate and isolate file access functionality into some kind of module that can be installed in remote servers. Then, using some ssh config magic, one could invoke some kind of 'subl-agent' in a remote shell, and the local sublime text 2 could communicate with the remote agent for remote editing. The visual part would be handled by the local sublime text 2, while the file access part would be handled by the remote agent. This would in principle keep ST2 as performant as editing local files.
+2

Closing last file in a column should switch focus to next column

Ben Scott 13 year бұрын жаңартылды 13 year бұрын 0
With a multi-column (or other non-single) layout, when I close the last file in the selected column, it would be nice if the focus switched to the next open file in the next column.
+2

Word wrap indents not matching the originating indentation

Saturn 12 year бұрын updated by jan otte 11 year бұрын 1
Hi! Just purchased Sublime Text and have one major quirk left that I haven't figured out.

Sometimes, word wrap will put the wrapped line at the same indentation as the content I'm working on. Other times it will put the wrapped text one tab over resulting in it appearing as though it's a completely separate line of code.


Since this behavior is inconsistent, I am under the belief it is a bug. If it is not, then I am requesting a setting to allow me to make it so the wrapped indentation matches the indentation of the originating line.


+2

Switch between 2 latest files with F12

David Nagels 12 year бұрын 0

In my previous editor (EditPlus) I could switch between the latest 2 files with F12, which came in very handy. I know you can switch with ctrl+tab, but then you have to remember if you need to go forward or backwards. As far as I can see F12 is not used yet.


Keep up the good work!

+2

ctrl-p / ctrl-r improvements

Peter Jah (0-) 12 year бұрын 0

  1. nested symbols: for example: '@SomeClass some_method -6' -- jump to to -6 line above class method
  2. search symbols in many files: 'file_name@SomeClass' show all files matched file_name and contained SomeClass

+2

Mulitlanguage spell checking

Dániel Kántor 11 year бұрын 0

In some code editors it is possible to have multiple spell check dictionaries activated at the same time. It would be a very comfortable feature in ST too, for example when working  with multilanguage text files.

+2

Ability to create create/open files via Dock's context menu

Ilya sabanin 13 year бұрын 0

I'm talking about this menu:


http://cl.ly/0M1U2v1D0y1M1p211E1d

On Mac it's pretty common to have things like Open File, New File in such menus. Check TextMate or Finder for examples.
+2

R - folding multi-line comments

Suraj Gupta 12 year бұрын 0

It would be great if the R lexer could support folding multi-line comments in R.  This is particularly useful with function headers.  Ideally, when the comments are folded only the top-most line shows (i.e. the name of the function).  Here's an example of a function header using Roxygen-style documentation. 


#' Test Function

#' 

#' My test function description

#'

#' @param firstParam  first parameter description

#' @param secondParam second parameter description

#'

#' @return  what the function returns

#' @note some notes here

#' @author First Last

#' @importFrom plyr ddply

#' @export

TestFunction = function( ... )

{

} 

+2

Default file extension

David Čepelík 14 year бұрын 0
I would love a preference setting of a default file extension. This way i often forget to supply it and end up having a plain text document.
+2

Element boundaries

Tomas - 12 year бұрын 0
Image 145
+2

During "Replace" show a live tooltip below each match displaying the replacement string

Tony Marklove 13 year бұрын 0
While doing a replace where both "Highlight matches" and "Regular expressions" are turned on, and the "Replace With" string contains back-references, display a live tooltip below each match in the document showing what the result of the replace will be.