Anybody know of any free web-coding editors for HTML/CSS/PHP? (Not Notepad please! :d)
Thanks in advance!
Russ
Vim (http://www.vim.org/)
html kit (http://www.chami.com/html-kit/)
Amaya (http://www.w3.org/Amaya/)
Quote from: Kp on January 25, 2005, 04:17 PM
Vim (http://www.vim.org/)
Damn you! that was my answer :(
XEmacs with windows-esque shortcut.
You can use the free trial version of Macromedia MX if it's a one-time thing.
Quote from: Mephisto on January 25, 2005, 05:52 PM
You can use the free trial version of Macromedia MX if it's a one-time thing.
That would be Dreamweaver MX. Macromedia is a brand, not a product. ;)
I like Programmer's Notepad (http://www.pnotepad.org/).
I replaced my notepad.exe with NotePad2 (http://www.flos-freeware.ch/notepad2.html).
It has syntax highlighting, and some other cool features.
Quote from: Blaze - S-1-0-0 on January 25, 2005, 10:06 PM
I replaced my notepad.exe with NotePad2 (http://www.flos-freeware.ch/notepad2.html).
It has syntax highlighting, and some other cool features.
Does syntax highlighting mean that when you type in code it will like make a menu with various choices? Like Dreamweaver, I want something close to DW that is free, can't buy DW for a while since I am buying new Mac stuff.
Where do I get this Emacs thing?
Quote from: Mitosis on January 26, 2005, 06:11 PM
Quote from: Blaze - S-1-0-0 on January 25, 2005, 10:06 PM
I replaced my notepad.exe with NotePad2 (http://www.flos-freeware.ch/notepad2.html).
It has syntax highlighting, and some other cool features.
Does syntax highlighting mean that when you type in code it will like make a menu with various choices?
I think usually when someone talks about syntax coloring, they're meaning that the program colors the words (characters, too) when they're recognized to have special meaning. For example, 'void', 'while', 'for', 'select' all could be colored differently, '<a>', '<br>', and etc could also be colored differently.
Gnu Emacs should be available from www.gnu.org somewhere.
Quote from: Mitosis on January 26, 2005, 06:11 PM
Quote from: Blaze - S-1-0-0 on January 25, 2005, 10:06 PM
I replaced my notepad.exe with NotePad2 (http://www.flos-freeware.ch/notepad2.html).
It has syntax highlighting, and some other cool features.
Does syntax highlighting mean that when you type in code it will like make a menu with various choices?
That feature is called "code completion" -- it's much harder to find free software that does it.
Eclipse! lol
Quote from: Stealth on January 27, 2005, 12:38 AMThat feature is called "code completion" -- it's much harder to find free software that does it.
Vim (http://www.vim.org/) supports some completion, though it isn't in a pop-up menu (which would be ugly). Look for ^N and ^P in insert mode. IIRC, there's a plugin that extends the completion support, but I've never tried it.