forked from toolshed/abra
		
	We were running behind and there were quite some deprecations to update. This was mostly in the upstream copy/pasta package but seems quite minimal.
		
			
				
	
	
		
			19 lines
		
	
	
		
			426 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			426 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package ansi
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| // ITerm2 returns a sequence that uses the iTerm2 proprietary protocol. Use the
 | |
| // iterm2 package for a more convenient API.
 | |
| //
 | |
| //	OSC 1337 ; key = value ST
 | |
| //
 | |
| // Example:
 | |
| //
 | |
| //	ITerm2(iterm2.File{...})
 | |
| //
 | |
| // See https://iterm2.com/documentation-escape-codes.html
 | |
| // See https://iterm2.com/documentation-images.html
 | |
| func ITerm2(data any) string {
 | |
| 	return "\x1b]1337;" + fmt.Sprint(data) + "\x07"
 | |
| }
 |