Skip to content

Commit a30b032

Browse files
committed
feat(ansi): add bracketed paste sequences
1 parent 8699bb3 commit a30b032

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ansi/paste.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package ansi
2+
3+
// BracketedPasteStart is the control sequence to enable bracketed paste mode.
4+
const BracketedPasteStart = "\x1b[200~"
5+
6+
// BracketedPasteEnd is the control sequence to disable bracketed paste mode.
7+
const BracketedPasteEnd = "\x1b[201~"

0 commit comments

Comments
 (0)