We are a fork of Roo. We regularly merge in the Roo codebase. To enable us to merge more easily, we mark all
our own changes with kilocode_change comments.
For single line changes, add the comment at the end of the line:
let i = 2 // kilocode_change
For multiple consecutive lines, wrap them with start/end comments:
// kilocode_change start
let i = 2
let j = 3
// kilocode_change end
{/* kilocode_change start */}
<CustomKiloComponent />
{/* kilocode_change end */}
/* kilocode_change */
.kilocode-specific-class {
color: blue;
}
/* kilocode_change start */
.another-class {
background: red;
}
/* kilocode_change end */
if the filename or directory name contains kilocode no marking with comments is required
If you're creating a completely new file that doesn't exist in Roo, add this comment at the top:
// kilocode_change - new file