Page 1 of 1

Sublime Text

Posted: Thu Nov 15, 2012 11:44 pm
by kanen
Sublime newLisp
Sublime newLisp
sublime_newlisp.png (39.58 KiB) Viewed 3508 times
I'm in love with Sublime Text 2. It has replaced vim, TextMate and BBEdit completely.

With the newLisp bundle & a few tweaks, it's pretty much perfect. Thanks to @curmullion for the syntax file. https://github.com/cormullion/newlisp-s ... -2-package

http://www.nerdi.net/blog/2012/02/05/cu ... me-coding/

You also need this -- https://github.com/facelessuser/BracketHighlighter

And, you should learn a few shortcuts https://gist.github.com/1207002 (I'm in love with CMD+D when highlighting a word, for example -- or CMD+CTRL+G for the "whole scope").

See also: CMD+,

(updated)

Code: Select all

{
    "auto_complete": true,
    "close_windows_when_empty": false,
    "color_scheme": "Packages/Theme - Phoenix/Color Scheme/Tomorrow-Night.tmTheme",
    "draw_white_space": "selection",
    "find_selected_text": true,
    "fold_buttons": true,
    "font_face": "Inconsolata",
    "font_options": [ "subpixel_antialias" ],
    "font_size": 14.0,
    "highlight_line": true,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
	"save_on_focus_lost":true,
	"tab_size": 2,
	"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "_build", "dist", "build", "site"]
}

Re: Sublime Text

Posted: Fri Nov 16, 2012 1:25 pm
by cormullion
Cool - if you want to update the github repository, that would be great. (Pull request, is it?)

Re: Sublime Text

Posted: Fri Nov 16, 2012 1:30 pm
by jopython
What's wrong with emacs?

Re: Sublime Text

Posted: Fri Nov 16, 2012 2:31 pm
by cormullion