I know this entry is old. But im experiencing similar problems:
Hi,
I love the concept of your Code Writer. However, there are some major bugs, that prevents me from using this as my daily driver.
1. The Automatic encoding detection doesnt work. If i create a new file, i can Save as, but repeated Saves report access denied. I fixed this by specificing a particular encoding time (UTF-8 in my case). That fixed the problem.
2. A major problem i cant fix is that when i save it sometimes "duplicates" parts of the text. For instance a simple code like this:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script language="javascript" src="control.js"></script>
<style>
[mType="1"]{
width: 800px;
position: relative;
border: 1px solid #C0C0C0;
}
</style>
</head>
<body onload="order_tiles()">
<div mType="1">
<div mType="2">asd</div>
<div mType="2">asd</div>
<div mType="2">asd</div>
<div mType="2">asd</div>
</div>
</body>
</html>
It turns into following when saved:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script language="javascript" src="control.js"></script>
<style>
[mType="1"]{
width: 800px;
position: relative;
border: 1px solid #C0C0C0;
}
</style>
</head>
<body onload="order_tiles()">
<div mType="1">
<div mType="2">asd</div>
<div mType="2">asd</div>
<div mType="2">asd</div>
<div mType="2">asd</div>
</div>
</body>
</html>
<div mType="2">asd</div>
<div mType="2">asd</div>
<div mType="2">asd</div>
<div mType="2">asd</div>
</div>
</body>
</html>
If you fix this, im 100% a fulltime user of this app. Its the best coding app in the app store for sure!