views:

856

answers:

11

Which CSS editor do you use on Linux and why?

+7  A: 

gvim. It's the editor I use for everything on Linux.

Paul Tomblin
I use plain ol' Vim, but +1 anyway. =]
strager
I just clicked the question to answer the same.
stesch
+3  A: 

Emacs, via css-mode. It could be better, I suppose, but this gets the job done. Colourization, identation...one thing that is fairly helpful is that it recognizes which keywords are standard properites, so you can easilly tell if you've typoed for a selector or property. YMMV.

jamesnvc
+2  A: 

My editor for choice is Emacs. For CSS there's a "css-mode" package which does syntax color highlighting. Why Emacs for CSS? Because i can work with ruby, html, css and js code, and manage it with svn without leaving the editor.

I've even used Quanta for a long time. Good editor for html, css and js.

Anurag
+1  A: 

Firebug is great for this. I also use the EditCSS extension for Firefox. Of course, generally I use vim for editing. But css doesn't come naturally to me so I need the immediate visual feedback that Firebug and EditCSS gives me.

PEZ
+4  A: 

A combination of Firebug and gedit with the Snippets plugin.

I use gedit for CSS - and for every programming/text editing task on Linux - because it is a lightweight, yet a powerful editor for GNOME, my desktop environment of choice.

Yaser Sulaiman
+1  A: 

vim. I'm not sure why you'd need anything more complex for editing css files (or any other kind of files, really).

Ben
hi ben. thanks for your answer. i guess i'm curious cuz there are some nice features like error checking, syntax completion, hex color popups, etc... there are some nice tools on mac, lookin for something nice on linux.
joshjdevl
@joshjdevl, Vim supports syntax highlighting, indention, and other things. Many distributions provide them by default when installing Vim. You can probably install add-on scripts if you need extra functionality (or make some yourself =).
strager
+1  A: 

I use Aptana Studio on Linux for editing CSS, HTML and JavaScript, it has code completion for all three languages and error reporting. Its a very complete editor and you can also download plugins to give code completion and error reporting for lots of other languages.

Eef
A: 

jEdit is my favorite for almost everything. Not only does it handle all kinds of code well, but it is also cross-platform, so once I get it installed and set up with the pluggins I like, I can switch-hit with no change in what editor I use.

cdeszaq
A: 

gVim, because:

  1. Folding is one of the best things I ever learned to use.
  2. The CSS colour highlighting plugin.

Be warned though that the named colour support in that script causes extremely long startup times in console Vim, due to it doing about 150 RGB->xterm escape lookups every time you load a CSS file - just comment out those lines if you don't need them.

Ant P.
+1  A: 

Gedit, imho it's TextMate for Linux.

tunnuz
A: 

Hi, i like geany !!, it comes with a class editor, and syntax highlight.

DIlaang