Skip to content

Serenade plugin for iTerm2

Notifications You must be signed in to change notification settings

serenadeai/iterm2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Serenade for iTerm2

Installation

  1. Download and install iTerm2 from https://iterm2.com if not installed already.
  2. Run the below to install the Serenade plugin:
    curl https://raw.githubusercontent.com/serenadeai/iterm2/main/install.sh | bash
    
  3. Restart iTerm2, and you should automatically be prompted to install a Python runtime for scripts:
    • If not, you can install by Python runtime manually via the menu item under Scripts > Manage > Install Python Runtime.
  4. Enable iTerm2's Python API. You can do this by either:
    • starting the Serenade script manually for the first time, via clicking Scripts > serenade > serenade.py
    • or by enabling the Python API with iTerm2 > Preferences... > General > Magic > Enable Python API

Now, the AutoLaunch script should start the Serenade script every time iTerm2 is started.

Updates

The client app will check and update the plugin each time it's started, but you can manually update with:

git -C ~/.serenade/iterm2 pull

Manual installation

If you prefer to not run an installation script directly, you can view it at https://raw.githubusercontent.com/serenadeai/iterm2/main/install.sh and run each line manually.

Uninstallation

Run the following to uninstall the shell integration and Serenade scripts:

curl https://raw.githubusercontent.com/serenadeai/iterm2/main/uninstall.sh | bash

Development

  1. After installation, use Scripts > Manage > console to restart the script and see output after making changes to files in ~/.serenade/iterm2.

Implementation details

Layout

In serenade.py, when the script is launched in iTerm, for every new session a new instance of the CommandHandler class is created, along with the Ipc class needed to communicate with the client. iTerm provides a single global Connection API through which all requests with the terminal is made.

CommandHandler

CommandHandler supports these commands:

  • COMMAND_TYPE_GET_EDITOR_STATE, which uses the Prompt, Session and Screen API to get the source (drafted command at the prompt) and cursor

Changes that are tested for editor state correctness:

  • A new shell session (window, tab, or pane) is created
  • A command is executed successfully
  • A command is cancelled with control+C
  • A new shell session is created via SSH
  • A shell session is ended with control+D
  • The screen is cleared with control+K
  • A long command wraps to the next line
  • A REPL such as python or node is started or exited
  • Commands are executed within a REPL
  • A "full-screen app" such as vim, less, or htop is started and exited

Known bugs:

  • Lines that wrap after the session is resized will have inaccurate cursor counts
  • A ^@ control code appears in the string returned by the iTerm API when control+L is pressed after there is a space in the command, which causes the source and cursor to be inaccurate

About

Serenade plugin for iTerm2

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published