Sublime Text 2 Beta released with Auto-complete and Improved UI
11–20 of 156 posts
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#12What I really miss in all these fast small editors is the quick-jump features that actually analyze the code and let me do things like 1) Jump the the function/method definition (even if it's in a different file) when I press Ctrl and click on the function name. Eclipse does this. 2) Quick find of the function/method definition across the whole project. Eclipse does this as well (Ctrl + R). I don't use Eclipse that m…
I also use cscope: https://github.com/ameyp/CscopeSublime
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#13What I really miss in all these fast small editors is the quick-jump features that actually analyze the code and let me do things like 1) Jump the the function/method definition (even if it's in a different file) when I press Ctrl and click on the function name. Eclipse does this. 2) Quick find of the function/method definition across the whole project. Eclipse does this as well (Ctrl + R). I don't use Eclipse that m…
for scripting languages, define a function as concatenated string in eval(), how could you find the function definition, without actually run the script for once?
Even if you run the script once, what if there is a delete_file() function you accidently called?
So do we need to implement a sandboxed VM in order to find definition, theoretical perfectly speaking?
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#14I really wish Emacs had smooth scrolling, indent guides and that Minimap. Those are some killer features that you can't just implement in Emacs' scripting language. edit: minimap exists! (Obviously only in GUI Emacs) Animated sub-line scrolling probably requires hacking the Emacs source. Indent guides might be possible just in elisp, but I don't know how good they would look.
you can't implement minimap in CLI. It's a GUI concept.
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#15What I really miss in all these fast small editors is the quick-jump features that actually analyze the code and let me do things like 1) Jump the the function/method definition (even if it's in a different file) when I press Ctrl and click on the function name. Eclipse does this. 2) Quick find of the function/method definition across the whole project. Eclipse does this as well (Ctrl + R). I don't use Eclipse that m…
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#16Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#17This is very convenient and not having this was the reason for still having TextMate around.
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#18What I really miss in all these fast small editors is the quick-jump features that actually analyze the code and let me do things like 1) Jump the the function/method definition (even if it's in a different file) when I press Ctrl and click on the function name. Eclipse does this. 2) Quick find of the function/method definition across the whole project. Eclipse does this as well (Ctrl + R). I don't use Eclipse that m…
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#19I really wish Emacs had smooth scrolling, indent guides and that Minimap. Those are some killer features that you can't just implement in Emacs' scripting language. edit: minimap exists! (Obviously only in GUI Emacs) Animated sub-line scrolling probably requires hacking the Emacs source. Indent guides might be possible just in elisp, but I don't know how good they would look.
Re: Sublime Text 2 Beta released with Auto-complete and Improved UI
#20For those wondering, auto-complete is quite fast. I've always avoided IDEs that offered this because they seemed to be terribly slow -- pleasantly surprised so far.
does it support any kind of CTags?