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

-1

Have all the "find" or "goto" functions temporarily overlay or replace the sidebar content.

Todd Lucas il y a 13 ans 0
Look at Word 2010 for Windows to see a good example of find with provides results with good context.  This should improve the useability of "find" and "goto" commands while retaining maximum buffer space.
-1

High Contrast Theme & Cursor for working outdoors or in sunlight

Ian Nieves il y a 12 ans mis à jour par Vic Johnson il y a 12 ans 4
high contrast theme for working on the beach or in the sun... ALSO a high contrast cursor (insertion point) so that I can see where the cursor actually is.  Perhaps put a glowing ring around it...  Currently it is so skinny it is impossible to see.
-1

Improper php indenting near anonymous function

Dave Lighthart il y a 11 ans 0

The following block indents improperly.  The problem appears related to the length of the anonymous function in the array.  If some of the chain selectors are combined, the indent works as expected.


<?php

namespace \App\AppBundle\Form;

use Symfony\Component\Form\AbstractType;

use Symfony\Component\Form\FormBuilderInterface;

use Symfony\Component\OptionsResolver\OptionsResolverInterface;

class ServiceType extends AbstractType

{

    public function buildForm(FormBuilderInterface $builder,array $options)

    {

        if ($sc->isGranted("ROLE_ADMIN")){

        } else {

            $builder->add('procedureCode'

                ,null

                ,array(

                    'empty_value'         => ''

                    ,'label'               => 'Procedure'

                    ,'label_attr'          => array('class' => 'txtl')

                    ,'attr'                => array('class' => 'select0')

                    ,'query_builder'       => function ($repository) use ($formusorid){

                        $qb = $repository->createQueryBuilder('p');

                        $qb->innerJoin('p.role', 'r')

                        ->innerJoin('r.usor','u','WITH',$qb->expr()->eq('u.id', ':usorid'))

                        ->leftJoin('AppAppBundle:Service','s','WITH',$qb->expr()->eq('s.procedure', 'p.id'))

                        ->setParameter('usorid', $formusorid)->select('p, COUNT(s) AS HIDDEN total')

                        ->addGroupBy('p')

                        ->addOrderBy('total' ,'DESC')->addOrderBy('p.code');

                        return $qb;

                    }));

}

if ($sc->isGranted("ROLE_ADMIN") or $otherview){

}

public function setDefaultOptions(OptionsResolverInterface $resolver)

{

    $resolver->setDefaults(array(

        'data_class' => '\App\AppBundle\Entity\Service'

        ));

}

public function getName()

{

    return '_App_Appbundle_Servicetype';

}

}


-1

autocomplete Framework & CMS based [Project basis] | may be as plugin

Md Rashidul Islam il y a 11 ans 0

For example when I work with Ruby on Rails or Laravel PHP framework or Joomla CMS or WP, they have many methods, classes, functions..It would be great to have the auto-complete option. For example i type the class name Base:: then it should display a lists of the variables and methods of that class.


Kindly Refer to: http://www.microsoft.com/Web/webmatrix/developer.aspx

AUTO COMPLETION AND TYPE THROUGH


I need it bad. Then it would have no issues remain to be the most awesome editor. Though already most awesome but I really miss this feature. When works with Eclipse or Dreamweaver, they provide nice elegant auto-complete feature


I don't know it may be difficult. Then may be developed as plugin. I'm sorry, If i can, then  i would have develop. But i don't know Python

-1

Movement by whitespace-delimited words outside Vintage

greppo il y a 12 ans 0
Currently movement by word (ctrl+cursor motion) stops at every punctuation boundary, which is not always what you want when dealing with code that is dense in punctuation.

In Vim and Vintage-mode, there are the W and B movement commands to move by whitespace-separated words, so you need fewer keystrokes to move around or expand selections.

Outside of Vintage mode, I would like commands and bindings to move the cursor by whitespace delimited word.
-1

Unobtrusive Update Message

Jonathan Chayce Dickinson il y a 12 ans 0
Currently the update notification is a modal popup (on Windows). This should rather be a 'slide-in' unfocused dialog or such that goes away after, maybe, half a minute.
Depending on the workflow that I am using ST2 for at the time (specifically opening and closing it as it is required - basically Notepad replacement, which is basically my exclusive use for it at work) this can get really annoying.
-1

On ubuntu 11.10 sublime text 2 2153 not work.

Eduar Carvajal il y a 12 ans mis à jour il y a 12 ans 0
"/usr/bin/sublime-text-2: línea 2: 14658 Violación de segmento  /usr/lib/sublime-text-2/sublime_text $*"
-1

coffeescript and stylus syntax checker

Daniel Steigerwald il y a 12 ans mis à jour il y a 12 ans 0
Live syntax checking, to ensure that watches work well.
-1

{ "command": "move", "args": {"by": "words_ends", "forward": false} } doesn't do anything

Jocelyn Turcotte il y a 12 ans 0
Same for { "command": "move", "args": {"by": "word", "forward": true} }. Semantically it would do exactly what I want, but the keys aren't doing anything if I try to configure it.

This is not the standard way I know, but I like to configure it that way (stops before words) for ctrl+right and keep the normal way (stops after words) for ctrl+shift+right.

So if I want to go around and select text from the beginning of a word to the end of another word it just snaps right where I expect it to.

This is the last missing piece that annoys me, if you fix it I'll buy you a license :)
-1

Haskell "module" keyword versus identifier with same prefix

Tony Morris il y a 11 ans 0

 The word "module" is a Haskell keyword, however, creating an identifier with a prefix of "module" is also valid. e.g.


modulez = "hi" -- valid Haskell


Unfortunately, this causes the editor to think I have used the module keyword, which screws up highlighting.