Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
saitoha committed Jul 9, 2015
2 parents 885f9a1 + 948b4a7 commit 27a049d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>plus-1.0a9</string>
<string>plus-1.0a10</string>
<key>NSPrincipalClass</key>
<string>MouseTerm</string>
<key>SIMBLTargetApplications</key>
Expand Down
2 changes: 1 addition & 1 deletion MTParser.m
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ static void osc11_get(MTShell *shell)
r = components[0] * 0xffff;
g = components[1] * 0xffff;
b = components[2] * 0xffff;
NSString *spec = [NSString stringWithFormat: @"\033]10;rgb:%04x/%04x/%04x\033\\", r, g, b];
NSString *spec = [NSString stringWithFormat: @"\033]11;rgb:%04x/%04x/%04x\033\\", r, g, b];
[(TTShell*) shell writeData: [NSData dataWithBytes: [spec UTF8String]
length: spec.length]];
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Additionally, this project does:
* Support xterm's *foreground text color operation sequences*: OSC 10/110.
Used by [MinEd][5].
* Support xterm's *background text color operation sequences*: OSC 11/111.
Used by [Emacs][8], [MinEd][5].
Used by [Emacs][8], [MinEd][5], [Vim][7].
* Support xterm's *cursor color operation sequences*: OSC 12/112.
[tmux][6] uses it at startup time.
* Support *"PASTE64"*: OSC 52 clipboard accsess(get access/set access).
Expand Down

0 comments on commit 27a049d

Please sign in to comment.