- Dec 19, 2017
-
-
George Nachman authored
Fix a problem where second and later tabs in a window with a left-side tab bar that's limited by the 1/3 * content size bound will have fewer columns than it should. Issue 6371.
-
- Dec 17, 2017
-
-
George Nachman authored
Make sure servers get killed on user-initiated quit. If we just HUP the shell then the server won't notice until it becomes attached as an orphan on the next launch. Issue 6369
-
- Dec 10, 2017
-
-
George Nachman authored
Improve performance of opening a window with the Profiles tool present when there are many profiles. We spent a long time calculting row heights. It's still slow because every row needs to be queried, but it's a lot faster than it used to be. Issue 6322
-
- Dec 02, 2017
-
-
George Nachman authored
Fix a bug where hotkey windows appearing in a different display than the currently key window (in another app) would not receive focus and would forget which app was previously active. Issue 6353 The two key changes are 1. Add a method to activate the app with a completion block 2. Don't throw away the existing previous state when a non hotkey window becomes key during a rollin. The logic already existed for a rollout. Here's what would happen: rollInAnimated [NSApp activateIgnoringOtherApps:YES] rollInAnimatingInDirection: (if there's no animation, the rollin finishes immediately) App becomes active A non-hotkey window becomes key Now, here's what happens: rollInAnimated [NSApp activateIgnoringOtherApps:YES] App becomes active A non-hotkey window becomes key, but it's ignored because there's a roll-in in progress rollInAnimatingInDirection: (if there's no animation, the rollin finishes immediately)
-
- Dec 01, 2017
-
-
George Nachman authored
-
- Nov 30, 2017
-
-
George Nachman authored
Make it clear that smart cursor color is only for box cursors by disabling the setting when a different cursor type is selected. Also change the verbiage and move controls around in the prefs panel to make more room for the longer string. Issue 6343
-
George Nachman authored
-
George Nachman authored
Fix build failure on case-sensitive file systems
-
George Nachman authored
-
George Nachman authored
Put in a hack to allow images to go wider than 256 columns. If we see the x value go to 0 right after it's 255 and the image code and row number stay the same, treat it as a continuation. Issue 6335.
-
George Nachman authored
-
- Nov 26, 2017
-
-
Maxim Mikityanskiy authored
-
- Nov 24, 2017
-
-
George Nachman authored
-
George Nachman authored
Rebuild touch bar when color presets change. It was not picking up changes on macOS 10.13. Mentioned in a comment in issue 5281
-
- Nov 23, 2017
-
-
George Nachman authored
[Focuse follows mouse] If the mouse has not moved between when the app resigned active and when the app becomes active again do not make the window under the cursor key.
-
George Nachman authored
Set find bar text field's apppearance to light when there's a dark theme so it is legible. Issue 6330
-
George Nachman authored
Make reset (both user initiated and ANSI RIS) show the primary buffer when in alternate screen mode. Issue 6325
-
George Nachman authored
-
George Nachman authored
Update solarized light and dark color presets to match the SRGB colors from the spec. Issue 3989.
-
- Nov 22, 2017
-
-
George Nachman authored
[tmux integration] Store "none" for the tab color when tab color is off for a session. This fixes a bug where new tmux sessions didn't use the profile's color. Uninitialized (which is now indicated as an unset tab color) should (and now does) mean to use the profile's value. "none" means no color. Otherwise it'll be a #hex value. Issue 6320
-
- Nov 20, 2017
-
-
George Nachman authored
-
George Nachman authored
-
George Nachman authored
-
George Nachman authored
-
- Nov 18, 2017
-
-
George Nachman authored
- Nov 17, 2017
-
-
George Nachman authored
Tiny typo fix
-
George Nachman authored
-
George Nachman authored
Draw tab color in white if the window appearance is dark. This happens to work for the main menu (it has a window!) as well as the context menu on a tab. Issue 6286.
-
- Nov 15, 2017
-
-
Juan Ibiapina authored
This fixes the solarized dark background being slightly darker in iterm. I also ran the same script to generate the colors for solarized light, although I didn't check before if the colors were incorrect. This changes solarized colors to use sRGB. The colors are calculated by dividing the reference RGB values by 255.0 in ruby. As discussed here: https://gitlab.com/gnachman/iterm2/issues/3989#note_47289852 These are the reference colors used: ``` SOLARIZED HEX 16/8 TERMCOL XTERM/HEX L*A*B RGB HSB --------- ------- ---- ------- ----------- ---------- ----------- ----------- base03 #002b36 8/4 brblack 234 #1c1c1c 15 -12 -12 0 43 54 193 100 21 base02 #073642 0/4 black 235 #262626 20 -12 -12 7 54 66 192 90 26 base01 #586e75 10/7 brgreen 240 #585858 45 -07 -07 88 110 117 194 25 46 base00 #657b83 11/7 bryellow 241 #626262 50 -07 -07 101 123 131 195 23 51 base0 #839496 12/6 brblue 244 #808080 60 -06 -03 131 148 150 186 13 59 base1 #93a1a1 14/4 brcyan 245 #8a8a8a 65 -05 -02 147 161 161 180 9 63 base2 #eee8d5 7/7 white 254 #e4e4e4 92 -00 10 238 232 213 44 11 93 base3 #fdf6e3 15/7 brwhite 230 #ffffd7 97 00 10 253 246 227 44 10 99 yellow #b58900 3/3 yellow 136 #af8700 60 10 65 181 137 0 45 100 71 orange #cb4b16 9/3 brred 166 #d75f00 50 50 55 203 75 22 18 89 80 red #dc322f 1/1 red 160 #d70000 50 65 45 220 50 47 1 79 86 magenta #d33682 5/5 magenta 125 #af005f 50 65 -05 211 54 130 331 74 83 violet #6c71c4 13/5 brmagenta 61 #5f5faf 50 15 -45 108 113 196 237 45 77 blue #268bd2 4/4 blue 33 #0087ff 55 -10 -45 38 139 210 205 82 82 cyan #2aa198 6/6 cyan 37 #00afaf 60 -35 -05 42 161 152 175 74 63 green #859900 2/2 green 64 #5f8700 60 -20 65 133 153 0 68 100 60 ```
-
George Nachman authored
-
George Nachman authored
Don't crash when you delete a password manager entry that is your only one and you are editing the password
-
George Nachman authored
-
George Nachman authored
-
George Nachman authored
-
- Nov 08, 2017
-
-
lxcode authored
-
- Nov 06, 2017
-