From c093b1591db60ce8749b8fa8674194e80cf7558c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 1 Aug 2016 11:17:39 -0400 Subject: Disable tab indicators in iTerm --- com.googlecode.iterm2.plist | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/com.googlecode.iterm2.plist b/com.googlecode.iterm2.plist index a41d1bcb..1ab7ce07 100644 --- a/com.googlecode.iterm2.plist +++ b/com.googlecode.iterm2.plist @@ -431,7 +431,7 @@ HiddenAdvancedFontRendering HideActivityIndicator - + HideMenuBarInFullscreen HideScrollbar @@ -518,11 +518,13 @@ 1 NSWindow Frame Preferences - 768 1621 606 456 -228 900 1920 1177 + 516 421 606 456 0 0 1440 877 NSWindow Frame SUUpdateAlert 410 364 620 392 0 0 1440 877 + NSWindow Frame SharedPreferences + 230 1494 796 473 -228 900 1920 1177 NSWindow Frame iTerm Window 0 - 527 1312 570 427 -228 900 1920 1177 + 450 1365 570 427 -228 900 1920 1177 NeverWarnAboutShortLivedSessions_3518C480-09C0-47C0-863F-A01193518920 New Bookmarks @@ -2363,11 +2365,11 @@ SUFeedAlternateAppNameKey iTerm SUFeedURL - https://iterm2.com/appcasts/testing3.xml?shard=83 + https://iterm2.com/appcasts/testing.xml?shard=83 SUHasLaunchedBefore SULastCheckTime - 2016-07-13T19:20:43Z + 2016-07-28T13:46:39Z SavePasteHistory Secure Input @@ -2378,6 +2380,8 @@ ShowFullScreenTabBar + ShowNewOutputIndicator + ShowPaneTitles SmartPlacement @@ -2440,7 +2444,7 @@ findRegex_iTerm iTerm Version - 3.0.3 + 3.0.5 kCPKSelectionViewPreferredModeKey 0 kCPKSelectionViewShowHSBTextFieldsKey -- cgit 1.4.1 w=1'>root/dispatch.c (unfollow)
Commit message (Collapse)Author
2019-11-10Add capsicum note to READMEJune McEnroe
2019-11-10Filter extended-joinJune McEnroe
2019-11-10Expand client configuration documentation and list capabilitiesJune McEnroe
2019-11-10Request all supported caps from serverJune McEnroe
2019-11-10Filter ACCOUNT, AWAY, CHGHOST for incapable clientsJune McEnroe
2019-11-10Rename listen to localJune McEnroe
2019-11-09Remove extended-join and invite-notifyJune McEnroe
The remaining caps only generate new commands which can easily be filtered out when sending to clients so will be in the first pass of support. extended-join is probably safe to pass through unaltered, just causing extraneous parameters on JOIN commands, but maybe not. invite-notify reuses the INVITE command where the invited user is not self.
2019-11-09Maintain stateCaps and offer them to clientsJune McEnroe
2019-11-09Parse capabilitiesJune McEnroe
The list that I've defined are the ones that I expect to be able to enable probably without any clients breaking... And of course server-time which pounce implements itself.
2019-11-09Avoid the reserved _A names with BIT macroJune McEnroe
2019-11-09Define macro for bit flag enumsJune McEnroe
2019-11-08Check that password is hashedJune McEnroe
2019-11-08Avoid calling getopt_long again after it returns -1June McEnroe
On GNU, calling getopt_long again will reset optind back to the first non-option argument, which would cause an infinite loop of reading the same configurtion file forever.
2019-11-08Only change AWAY status for registered clientsJune McEnroe
Turns out I did eventually fix this, because I may want to implement "passive clients" for logging or notification stuff, which wouldn't affect AWAY status either.
2019-11-07Just write the example normallyJune McEnroe
2019-11-07Include path in readlinkat errorJune McEnroe
2019-11-07Call clientConsume before clientRecvJune McEnroe
This might reduce the frequency of a client getting its own message back because it was behind in the ring when it sent it.
2019-11-06Use -l:filename in Linux.mkJune McEnroe
2019-11-06Fix compat.h for #defined strlcpyJune McEnroe
2019-11-06Allow unsetting LIBRESSL_PREFIXJune McEnroe
2019-11-06Document calico service configurationJune McEnroe
2019-11-06Document SASL EXTERNAL configuration in more detailJune McEnroe
2019-11-06Document pounce service configurationJune McEnroe
2019-11-06Mention Darwin and GNU/Linux in READMEJune McEnroe
2019-11-06Assume LibreSSL from brew on DarwinJune McEnroe
2019-11-06Remove -DNO_EXPLICIT_BZERO from Darwin.mkJune McEnroe
2019-11-06Don't install rc scripts or dirs on LinuxJune McEnroe