Reputation: 26919
Coming from the VisualStudio world to Eclipse! I have a question:
I have created a File->New->Project->General Project and added a .htm
file to it and went to its text editor mode. But it does not have intellisence for HTML tags when I type them. Then I installed Aptana plug-in and tought it will bring auto-complete for my tags, but it did not change anything. So we have to type everything? No Intellisense for HTML in Eclipse?
Upvotes: 6
Views: 20696
Reputation: 9
in latest eclipse (2023) it has been changed -> Windows>Preferences>Web>HTML files>editor>content Assistant.
Then you can change some settings here like promt when you insert something and speed.
Upvotes: 0
Reputation: 1
If you are on mac on the top of your screen click the Eclipse button Preferences -> HTML Files -> Content Assist and then in the "Prompt when these characters are inserted" area enter: abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ._<=
Upvotes: 0
Reputation: 524
In Eclipse goto
Window->Preferences->HTML Files -> Editor ->Content Assist
and paste this whole line instead of <= in Promt when these characters are inserted... !
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ._<=
then apply and close & Enjoy Coding !
Upvotes: 4
Reputation: 39641
Install the Web Tools Platform (WTP), that should give you auto completion.
Upvotes: 2