You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your token is saved locally - you won't need to re-authenticate unless it expires.
Usage
Starting termsheet
# Start with default theme
termsheet
# Start with a specific theme
termsheet -theme miami-nights
Keybindings
Navigation
Key
Command
Description
C-n / ↓
next-line
Move down
C-p / ↑
previous-line
Move up
C-f / →
forward-char
Move right
C-b / ←
backward-char
Move left
C-a
beginning-of-row
Jump to column A
C-e
end-of-row
Jump to last column with data
M-<
beginning-of-sheet
Jump to cell A1
M->
end-of-sheet
Jump to last cell with data
C-l
recenter
Center view on cursor
Editing
Key
Command
Description
Enter
edit-cell
Edit the current cell
Backspace
clear-cell
Clear the current cell
C-x b
toggle-bold
Toggle bold formatting
C-x i
toggle-italic
Toggle italic formatting
Column Resizing
Key
Command
Description
}
widen-column
Make column wider
{
narrow-column
Make column narrower
Search
Key
Command
Description
C-s
search-forward
Search for text
Sheets
Key
Command
Description
M-x connect-sheet
Connect to a Google Sheet
M-x switch-sheet
Switch between sheets
M-x refresh-sheet
Force refresh data
M-x disconnect-sheet
Disconnect from sheet
General
Key
Command
Description
M-x
execute-command
Open command palette
M-t
cycle-theme
Cycle through themes
C-g
cancel
Cancel current operation
C-x C-c
quit
Exit termsheet
Key Notation
C- = Control key (e.g., C-n = Ctrl+N)
M- = Meta/Alt key (e.g., M-x = Alt+X)
M-< = Alt+Shift+, (less than)
M-> = Alt+Shift+. (greater than)
Themes
termsheet comes with 7 built-in themes:
Theme
Description
default
Modern dark theme with blue accents
dark
Pure black background
light
Clean white background
granddad
Retro green CRT (Quattro Pro vibes)
pina-colada
Warm tropical with golden accents
lobster-boy
Nautical red and ocean blue
miami-nights
Synthwave neon with magenta and cyan
Switch themes:
Press M-t to cycle through themes
Press M-x and type set-theme to pick from a list
Development
# Run tests
make test# Run with verbose test output
make test-verbose
# Build
make build
# Run directly
make run
# Format code
make fmt
# Run all checks
make check