Variables
Variables are used to communicate information between components such as Python scripts and shell scripts. They are described in depth in Scripting Fundamentals.
Reference
Jump to context: Session | Tab | Window | Global
Session Context
The following variables are defined in the context of a session:
Session Name
autoNameFormat
- This is an interpolated string from which theautoName
variable is computed. It can be modified by changing the "Session Name" field in Edit Session…, by a trigger that sets the session name, or by an OSC control sequence that sets the icon title. It is initialized to the profile name when a new session is created.autoName
- The result of evaluating theautoNameFormat
interpolated string. This attempts to match the user's intuition of the what the session's name is.name
- The formatted name as it appears in the tab bar (excluding tmux integration decoration). For example, if the profile is configured to show the session name and job, this would take a value likeMy Profile (vim)
.presentationName
- The session name exactly as it appears in the session title bar.terminalIconName
- The "icon" title, as set by the control sequence OSC 0 or OSC 1.terminalWindowName
- The "window" title, as set by the control sequence OSC 0 or OSC 2.triggerName
- The last session name set by a trigger.
Terminal
columns
- Session's width in columnscommandLine
- Command line of the current foreground job (job name including arguments)jobName
- The name of the current foreground job (e.g., "emacs")jobPid
- The process ID of the current foreground job in this session.mouseReportingMode
- A number indicating how mouse events are reported. -1: Not reported, 0: button clicks reported, 1: not currently implemented, 2: reports clicks and drags, 3: reports clicks, drags, and movementparentSession
- The session that was current when this sessionw as created. This is an alias to the context of that session so you can access its variables.pid
- The process ID of the root process in this session (typicallylogin
).processTitle
- The (perhaps modified by the process) title of a process from its argv.rows
- The session's height in rowsselection
- The currently selected text.selectionLength
- The length in UTF-8 bytes of the currently selected text.termid
- Window, tab, and pane number as used in the$TERM_SESSION_ID
environment variable.tty
- The path to the local TTY deviceuname
- Information about the operating system on the current host.shell
- The shell on the current host.sshIntegrationLevel
- 0: No ssh integration. 1: Basic ssh integration. 2: Full ssh integration with all features available.homeDirectory
- The home directory on the current host.applicationKeypad
- A boolean indicating if the session is in application keypad mode.mouseInfo
- An array with seven values: Mouse x, mouse y, currently pressed button, number of consecutive button clicks, array of modifiers pressed, a bitmask of the side-effects of clicking, mouse state.bellCount
- Number of times the bell has rung.
Shell Integration
These values require shell integration to be installed.
hostname
- The current hostnamelastCommand
- The last command run in the sessionpath
- The current working directory (this works without shell integration, but not if you ssh elsewhere)username
- The current user name
Logging
autoLogId
- When automatic logging is enabled, this is the random number portion of the filename.creationTimeString
- A string giving the initial creation time of the session, used as part of the filename when automatic logging is enabledlogFilename
- If set, the filename that logging goes to. If unset, logging is off. New in version 3.4.7.
tmux Integration
tmuxClientName
- The name of the tmux session when tmux integration is in use (e.g.,user@localhost
).tmuxPaneTitle
- The title of the tmux window pane.tmuxRole
- Unset if tmux integration is not in use. Otherwise, is "gateway" for the session in whichtmux -CC
is running or "client" in tmux integration sessions.tmuxStatusLeft
- In tmux integration, the value of the left side of the status bar.tmuxStatusRight
- In tmux integration, the value of the right side of the status bar.tmuxWindowPane
- In tmux integration, this gives the window pane number.tmuxWindowTitle
- If tmux integration is in use, this gives the name of the window title from tmux. _tmuxWindowPaneIndex
- In tmux integration, this gives the index of the window pane. It corresponds to thepane_index
property in tmux.
References to Other Contexts
iterm2
- A reference to the variables belonging to the application (i.e., the global context)tab
- A reference to the variables belonging to the tab containing this session.user
- A context for user-set variables. Variables may be set with a custom control sequence or by using the Python scripting API. They are often set when using shell integration. See User-Defined Variables for more information.
Other
badge
- The value of the badge. Note that the user can enter an interpolated string in the UI, but this value contains the string result of evaluating it.id
- A unique identifier for the sessionprofileName
- The name of the current profile.mouseInfo
- Describes the last mouse event. Is an array:[x coord, y coord, button number, click count, array of modifiers, bitmask of side effects, event type]
.x coord
is 0-based and gives the location in columns from the leftmost column.y coord
is 0 at the first line in history, including lines which have since been lost if there are more lines of history than the maximum.button number
is 0 for left, 1 for right, and 2 or greater for other buttons.click count
is 1 for single click, 2 for double click, etc., and isn't artifically bounded.array of modifiers
contains numbers for each modifier key that is pressed. They keys are: Control = 1; Option = 2; Command = 3; Shift = 4.bitmask of side effects
comes by summing these values: Modify selection = 1; Perform action = 2; Open target (e.g., a URL or file) = 4; Report = 8; Move cursor = 16; Move find-on-page start location = 32; Open password manager = 64; Drag = 128.event type
is 0 for mouse-up, 1 for mouse-down, 2 for drag.
User-Defined Variables
The only variables that users may directly control are those in the "user"
scope of a session. For example, you could set a variable named "gitBranch" to
the name of the current git branch. This value would then be available to
display in the session title, badge, or other places, and would be available to
Python API scripts. You'd reference it as user.gitBranch
.
See "Setting User-Defined Variables" in Scripting Fundamentals for details on setting them.
Tab Context
id
- The unique identifier for this tab.titleOverrideFormat
- An interpolated string giving the title to use for the tab. If not set, the session's title will be used. Note the session's title is configurable in Prefs > Profiles > General > Title and is not necessarily equal to theautoName
, but may be derived from it (or not).titleOverride
- The value oftitleOverrideFormat
after evaluating it as an interpolated string.tmuxWindow
- In tmux integration, this is the tmux window number this tab represents.tmuxWindowTitle
- In tmux integration, this is the tmux window title. It will only be set if the tmux optionset-title
is on. It comes from evaluating the tmuxset-titles-strings
option.tmuxWindowName
- In tmux integration, this is the tmux window name.title
- The fully formatted title as it appears in the tab bar.
References to Other Contexts
currentSession
- A reference to the context of the active session in this tab.iterm2
- A reference to the variables belonging to the application (i.e., the global context)window
- A reference to the context of the enclosing window
Window Context
References to Other Contexts
currentTab
- A reference to the context of the active tab.iterm2
- A reference to the variables belonging to the application (i.e., the global context)
Window Title
titleOverride
- The value from evaluating the interpeted string intitleOverrideFormat
, if set.titleOverrideFormat
- The window's interpolated string title. If not set, the current tab's title is used.currentTab
- The context of the current tab.
Other
id
- The window ID.frame
- An array of integers giving the x origin, y origin, width, and height.style
- The window style. Takes one of these values:normal
,non-native full screen
,native full screen
,full-width top
,full-width bottom
,full-height left
,full-height right
,bottom
,top
,left
,right
,no-title-bar
,compact
,accessory
.number
- The window number. Corresponds to the keyboard shortcut that switches to the window. Begins at 1. Unlike the keyboard shortcut, this is set even if the number is larger than 9.isHotkeyWindow
- A boolean indicating if this is a hotkey window.
Global Context
effectiveTheme
- A space-delimited list of words describing the OS theme (e.g., "dark", "light highContrast", "dark minimal")localhostName
- The best guess of what localhost's hostname ispid
- The process ID of the iTerm2 app