Back to .md Directory
Editor Preview - Quick Reference
Opening the Editor Preview
- In chat, type:
/edit <filename> - Neovim opens automatically in Windows Terminal
- Press
Alt+5to switch to the Editor Preview window
Navigation Controls
Line-by-Line Scrolling
jorā- Scroll down one linekorā- Scroll up one line
Page Scrolling
Ctrl+D- Scroll down half page (Vim-style)Ctrl+U- Scroll up half page (Vim-style)PgDn- Scroll down full pagePgUp- Scroll up full page
Jump Navigation
Homeorg- Jump to top of fileEndorShift+G- Jump to bottom of file
Quick Actions
Alt+N- Open file in Neovim (if not already open)RorF5- Force refresh/reload from disk?- Show help message
Status Bar Information
š PREVIEW MODE | š main.go | 450 lines | Line 123/450 (27%) | Alt+N: Open Neovim
- Preview Mode: Indicates read-only preview (editing happens in Neovim)
- Filename: Current file being previewed
- Line Count: Total lines in file
- Position: Current line / Total lines (Scroll percentage)
- Quick Hint: Reminder to use Alt+N for editing
Workflow Tips
Real-Time Editing
- Open file with
/edit filename.go - Switch to Neovim window (opens automatically)
- Make edits in Neovim
- Save with
:w(or:wq) - Switch to TUI with
Alt+6 - See changes appear within 500ms automatically
Reviewing Long Files
- Use
j/kfor careful line-by-line review - Use
Ctrl+D/Ctrl+Ufor quick scanning - Use
PgDn/PgUpfor section-by-section navigation - Use
Home/Endto check file boundaries - Watch scroll percentage to track progress
Multi-User Collaboration
- See colored cursors for other users
- User list shown at top:
š„ Editing: alice, bob - Each user gets unique cursor color
- Cursors update in real-time
Performance Notes
- File changes detected efficiently (checks modification time, not full content)
- Updates only when file actually changes
- Typical latency: <500ms from Neovim save to preview update
- Works well with files up to several thousand lines
Troubleshooting
Preview Not Updating?
- Press
RorF5to force refresh - Check if file is actually saved in Neovim (
:w) - Verify file path is correct
Can't See Full File?
- Use scroll keys (
j/k,PgDn/PgUp) - Check scroll position in status bar
- Press
EndorShift+Gto jump to bottom
Neovim Won't Open?
- Check if Neovim is installed
- Verify
nvimis in PATH - Try opening manually:
nvim <filename>
Window Switching
Alt+1- ChatAlt+2- ProjectsAlt+3- TasksAlt+4- Logs (where editor command outputs go)Alt+5- ReviewAlt+6- Editor Preview (this window)Alt+7- Notes
Related Commands
/edit <file>- Open file in Neovim + show preview/review start <branch>- Start code review/snippet save <name>- Save current code snippet
Design Philosophy
The Editor Preview is not for editing - it's a real-time window into what's happening in Neovim. Think of it as:
- šŗ A live video feed of your file
- š A preview pane while editing elsewhere
- š„ A collaboration monitor showing others' cursors
- š A reference window while coding
For editing: Use Neovim (Alt+N to open) For viewing: Use Editor Preview (Alt+6)
Pro Tip: Keep Neovim and TUI side-by-side on different monitors or in split terminals for the ultimate coding experience!
Related Documents
RUNBOOK.md
Incident Response Runbooks - Deal Scout
**Quick Navigation:**
ai
0
3
darnellt0RUNBOOK.md
Docker Setup and Website Preview Guide
This guide explains how to run the AI & Mobility Research Lab website locally using Docker and preview it at `http://localhost:8080`.
aiprompt
0
2
yiqiao-liRUNBOOK.md
Document Preview & Download Feature - Complete Guide
I've added document preview and download functionality that retrieves files from MinIO and serves them directly through the application.
aiprompt
0
2
bwaliaRUNBOOK.md
UI Preview Guide
This guide explains different ways to preview the UI components before deploying your application.
ai
0
1
BLKOUTUK