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

0

Nobody answer on the forum at bugs request so i`m sad for that...

oriceon 13 ár síðan 0
http://www.screencast.com/t/yhtNxg34DF

1) appear some hidden copy code from the last part of string.
2) On del key press text are deleted weird...

I use last Dev Build on Win 7 x86
0

I cant install sublime in linux

Mohamad Raha 9 ár síðan Uppfært 9 ár síðan 1

When i try to install sublime on gnu/linux Ubuntu 15.04 installing process break and stop and show me following error :

$ python sublime_plugin.py
Traceback (most recent call last):
File "sublime_plugin.py", line 4, in <module>
import sublime
ImportError: No module named sublime

0

how to find a filename??

Jun Hong Ahn 11 ár síðan 0
i used the sublime text 2, 

and i think there are no function about find a filename. right?

what i really wanna do is to find some keyword in a specific file.

and there are many file name,, such as 

#include <sys/types.h>
#include <stdbool.h>
#include <string.h>
#include <assert.h>
#include <debug.h>
#include <nuttx/arch.h>
#include <nuttx/compiler.h>
#include <nuttx/fs/fs.h>
#include <nuttx/net/net.h>
#include <nuttx/lib.h>
#include <nuttx/kmalloc.h>
#include <nuttx/init.h>
#include "os_internal.h"
#include "sig_internal.h"
#include "wd_internal.h"
#include "sem_internal.h"
#ifndef CONFIG_DISABLE_MQUEUE
# include "mq_internal.h"
#endif
#ifndef CONFIG_DISABLE_PTHREAD
# include "pthread_internal.h"
#endif
#include "clock_internal.h"
#include "timer_internal.h"
#include "irq_internal.h"
#ifdef HAVE_TASK_GROUP
#include "group_internal.h"
#endif



so if i wanna find some word, 

i open the explorer and i search the types.h and then open it. and i search the stdbool.h and then open it.... repeat all the things and then i search that keyword in open files...

so,,, at least what i want is to search the filename in sublime text...

or could i make that package if i study the sublime text? plz help!!! :(
0

Support references to other defined colors in color scheme files

Joel Thornton 13 ár síðan updated by FichteFoll 13 ár síðan 1
It would be useful in authoring and maintaining color scheme files to be able to reference the color choices of another entity in the same color scheme. This would simplify changing a given color or conceptual "color group".

Something like this:


<dict>
    <key>name</key>
    <string>Class name</string>
    <key>scope</key>
    <string>entity.name.class</string>
    <key>settings</key>
    <dict>
        <key>foreground</key>
        <string>#A6E22E</string>
    </dict>
</dict>
<dict>
    <key>name</key>
    <string>Inherited class</string>
    <key>scope</key>
    <string>entity.other.inherited-class</string>
    <key>settings</key>
    <dict>
        <key>foreground</key>
        <string>entity.name.class</string>
    </dict>
</dict>


In this example, entity.other.inherited-class would use the referenced foreground color defined by entity.name.class.

Since ST2 color scheme files can contain named scopes which don't actually exist in any document, it would be possible to create scopes which are just used internally in the color scheme file to define a shared color, e.g. "colors.brightBlue".
0

folder_exclude_patterns

Nick Ostrovsky 11 ár síðan 0

Add ".sass-cache" to default folder_exclude_patterns

0

auto close tags

Maciej Partyka 12 ár síðan 0

When typing HTML code in quotes in PHP(and I guess it occurs in other languages as well), it doesn't properly close the tags:

<html>

<?php

echo "<p></html>"


(it should close as "</p>").

I suggest auto_close_tags should be turned off in quotes until it gets fixed, because this bug is really annoying.

Thanks!

0

Open files from the Goto Anything panel next to the current tab, instead of at the end.

Sergio Tirado 14 ár síðan 0
For example, when working on a Controller, you call the Goto Anything Panel (Ctrl + P) and search for the corresponding View.

After you select it from the dropdown list, the View opens right next to the Controller tab (the one you were working on), instead of being opened as the last tab.
0

"Switch Project" should have the same submenu as "Open Recent"

Owain Cuvelier 12 ár síðan 0

"Switch Project" should have the same submenu as "Open Recent".

0

windows 8 运行特别卡

仁宇 毕 11 ár síðan 0

在windows8 运行特别卡,卡主要是体现在输入的时候,当你输入特别快的快的时候,它就不动了,必须要等一会儿才能显示,这很影响速度,希望改进!

0

Install language definition in "json-tmlanguage" file

Matthew Scott 13 ár síðan Uppfært 13 ár síðan 1
I am trying to install this file to handle .enaml files in SublimeText 2:


I've tried but failed to install AAAPackageDev.

Is there a simple HOWTO somewhere that covers what a Sublime Text 2 user should do to use such a JSON-formatted .tmLanguage file?