iterm2 cannot toggle fullscreen when in 'top of screen' mode

1,799

Solution 1

I think this is a bug. I also am unable to go into full screen when switching the style to anything other than normal.

I also have a different version of iTerm than you from what I can tell. (Build 1.0.0.20130319)

iterm settings

Solution 2

Having 'Top of Screen' selected indeed breaks the 'Cmd + Enter' fullscreen capability, but I've noticed that having the Preferences > General: Use Lion-style Fullscreen windows option checked also does a trick on this functionality.

Once you uncheck this, you should be able to use any other style (except the 'Top of Screen' one), and benefit from a functional fullscreen feature ;)

Mac OS v10.10.3
iTerm2 v2.1.1

Share:
1,799

Related videos on Youtube

Elysire
Author by

Elysire

Updated on September 18, 2022

Comments

  • Elysire
    Elysire almost 2 years

    My dataframe look like this

    Plate Sample LogRatio
     P1     S1     0.42
     P1     S2     0.23 
     P2     S3     0.41 
     P3     S4     0.36 
     P3     S5     0.18
    

    I have calculated the median of each plate (but it's probably not the best idea to start like this)

    grouped = df.groupby("Plate")
    medianesPlate = grouped["LogRatio"].median() 
    

    And I want to add a column on my dataframe

    CorrectedLogRatio = LogRatio-median(plate)
    

    I suppose with :

    df["CorrectedLogRatio"] = LogRatio-median(plate)
    

    To have something like this :

    Plate Sample LogRatio CorrectedLogRatio
     P1     S1     0.42    0.42-median(P1)   
     P1     S2     0.23    0.23-median(P1)
     P2     S3     0.41    0.41-median(P2)
     P3     S4     0.36    0.36-median(P3)
     P3     S5     0.18    0.18-median(P3)
    

    But I don't know how to get the median from medianesPlates. I tried some apply and transform functions but it doesn't work. Thanks for any help

    • sobek
      sobek over 7 years
      What exactly does not work and what error do you get? Do you perhaps mean to use CorrectedLogRatio = LogRatio-medianesPlate?
  • Nallasamy Nss
    Nallasamy Nss about 11 years
    I am seeing this behavior too on the same build you have (Build 1.0.0.20130319)
  • Nallasamy Nss
    Nallasamy Nss about 11 years
    Looks like this is a known bug targeted for a future release.
  • AdrieanKhisbe
    AdrieanKhisbe almost 9 years
    It is fix in the current beta, and will be available in the future iterm3 (end 2015) iterm2.com/downloads.html
  • cdunn2001
    cdunn2001 over 8 years
    Interesting. That must have gotten turned on by a recent update (2.1.1). If I turn off "Lion-style Fullscreen windows" there, then my Cmd-Tab works again to switch between applications.
  • marczoid
    marczoid over 8 years
    This doesn't work in version 2.1.4 anymore.
  • Denis C de Azevedo
    Denis C de Azevedo over 8 years
    This is fixed in iTerm3 Beta (my version is Build 2.9.20160206).