Registration¶
Defines interfaces for registering functions.
- RPC(func)¶
A decorator that adds an async_register value to the coroutine it decorates. async_register is a coroutine that will register the function as an RPC.
An RPC is a function in a script that iTerm2 can invoke in response to some action, such a a keypress or a trigger. You use this decorator to register a coroutine as an RPC.
Every RPC must have a unique signature. The signature is composed of two parts: first, the name, which comes from the name of the coroutine being decorated; second, the names of its arguments. The order of arguments is not important.
The decorated coroutine will have a async_register value that you must call to complete the registration. async_register takes one required argument, the
Connection
. It also takes one optional argument, which is a timeout. The timeout is a value in seconds. If not given, the default timeout will be used. When waiting for an RPC to return, iTerm2 will stop waiting for the RPC after the timeout elapses.Do not use default values for arguments in your decorated coroutine, with one exception: a special kind of default value of type
iterm2.Reference
. It names a variable that is visible in the context of the invocation. It will be transformed to the current value of that variable. This is the only way to get information about the current context. For example, a value of iterm2.Reference(“id”) will give you the session ID of the context where the RPC was invoked. If the RPC is run from a keyboard shortcut, that is the ID of the session that had keyboard focus at the time of invocation.See also
Example “Badge or Window Name in Tab Title”
Example “Modify Background Image Blending”
Example “Close Tabs to the Right”
Example “JSON Pretty Printer Status Bar Component”
Example “Move Tab To Next/Previous Window”
That’s complicated, but an example will make it clearer:
Example:
app = await iterm2.async_get_app(connection) @iterm2.RPC async def split_current_session_n_times( session_id=iterm2.Reference("id"), n=1): session = app.get_session_by_id(session_id) for i in range(n): await session.async_split_pane() # Remember to call async_register! await split_current_session_n_times.async_register(connection)
- TitleProviderRPC(func)¶
A decorator that prepares a function for registration as a session title provider. Similar to
RPC()
.A session title provider is a function that gets called to compute the title of a session. It may be called frequently, whenever the session title is deemed to need recomputation. Once registered, it appears as an option in the list of title settings in preferences.
It is called when any of its inputs change. This will only happen if one or more of the inputs are
Reference()
references to variables in the session context.It must return a string.
Note that the async_register function is different than in the
RPC()
decorator: it takes three arguments. The first is theConnection
. The second is a “display name”, which is the string to show in preferences that the user may select to use this title provider. The third is a string identifier, which must be unique among all title providers. The identifier should be a reverse DNS name, like com.example.my-title-provider. As long as the identifier remains the same from one version to the next, the display name and function signature may change.See also
Example “George’s Title Algorithm”
Example:
@iterm2.TitleProviderRPC async def upper_case_title(auto_name=iterm2.Reference("autoName?")): if not auto_name: return "" return auto_name.upper() # Remember to call async_register! await upper_case_title.async_register( connection, display_name="Upper-case Title", unique_identifier="com.iterm2.example.title-provider")
- StatusBarRPC(func)¶
A decorator (like
RPC()
) that registers a custom status bar component.See
StatusBarComponent
for details on what a status bar component is.The coroutine is called when any of its inputs change. This will only happen if one or more of the inputs are
Reference()
references to variables in the session context.The coroutine must take an argument named knobs that will contain a dictionary with configuration settings.
It may return a string or an array of strings. In the case that it returns an array, the longest string fitting the available space will be used.
Note that unlike the other RPC decorators, you use
async_register()
to register it, rather than a register property added to the coroutine.See also
Example “Escape Key Indicator”
Example “JSON Pretty Printer Status Bar Component”
Example “Status Bar Component: Mouse Mode”
Example “Status Bar Component”
Example:
component = iterm2.StatusBarComponent( short_description="Session ID", detailed_description="Show the session's identifier", knobs=[], exemplar="[session ID]", update_cadence=None, identifier="com.iterm2.example.statusbar-rpc") @iterm2.StatusBarRPC async def session_id_status_bar_coro( knobs, session_id=iterm2.Reference("id")): # This status bar component shows the current session ID, which # is useful for debugging scripts. return session_id @iterm2.RPC async def my_status_bar_click_handler(session_id): # When you click the status bar it opens a popover with the # message "Hello World" await component.async_open_popover( session_id, "Hello world", iterm2.Size(200, 200)) await component.async_register( connection, session_id_status_bar_coro, onclick=my_status_bar_click_handler)
- ContextMenuProviderRPC(func)¶
A decorator that prepares a function for registration as a context menu provider. Similar to
RPC()
.A context menu provider is a function that gets called when the user selects an item in a context menu. The context menu is the menu that appears when you right-click in a terminal window.
The return value is ignored.
- Parameters
connection –
Connection
display_name – Name that appears in the context menu.
unique_identifier – Globally unique identifier for this provider (e.g., “com.example.my-provider”)
timeout – Max number of seconds to wait, or None to use the default.
- class Reference(name)¶
Defines a reference to a variable for use in the @RPC decorator.
See also
Example “Status Bar Component: Mouse Mode”
Example “Status Bar Component”