Let's say I have the following (example) code in combined.js
:
/* jQuery, Moment.js, Bootstrap, etc. */
Child.prototype.doSchool = function(data) { // Bookmarked
var essay = data.essay || {};
if (essay) {
var spelling = checkSpelling(essay, EN_US_GRADE_7);
return spelling.grade();
}
}
/* Extensive and Turing-complete code base */
var burt = new Child();
if (burt.doSchool({essay: "i like trains"}) < .65) burt.comfort(); // Bookmarked
/* jQuery extensions, Fallout 4, etc. */
The file is bookmarked in Komodo Edit 9.3.x in the locations marked by // inline comments
.
Any /* block comments */
indicate thousands of lines of code.
The source between the bookmarks exists in another file, school.inc.js
. I want to know if there is an easy way to select all the text between the bookmarks, so that combined.js
can be easily updated by pasting the contents of school.inc.js
over it without having to use a combining utility.