summaryrefslogtreecommitdiffstats
path: root/examples/comment-out-current-line.qs
blob: d07b673f15b567b00662de04f7b457db533ec213 (plain)
1
2
3
4
5
6
7
8
// This example shows how to use a mark to remember a position in the text, while text changes around it.
var editor = editors.current()
var mark = editor.createMark();
editor.gotoLineStart();
editor.insertText("/*")
editor.gotoLineEnd();
editor.insertText("*/")
editor.gotoMark(mark);