Forum Moderators: mack
So I am looking for a recommendation on code completion editors. I would also like to hear from poor spellers who have learned JavaScript, CSS, and HTML better with the aid of a code completion editor. What do you think is most important would you put code completion on the name attribute high on your list.
<!-- "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>dot syntax play</title>
</head>
<body>
<form name="form2">
<input type="text" name="input1" value="name">
</form>
<script language="JavaScript">
/*<![CDATA[*/
var tell=form2.input1.value;// written with code completion
window.document.write(tell);//written with code completion
/*]]>*/
</script>
</body>
Not sure what you're looking for, but NoteTab Light has a "clips" section which can be used to store frequently used syntax, either to be completed (allow variables) or as complete code snippets.
HTML-Kit can be set up to use hints so if you type in a starter hint it auto completes the rest of the code, ~ you have to "train" it first by putting in the correct snippets first though
I'm not sure if this is what you're after though, if so then some editors probably do similar things
Suzy