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
{id: 'document-add-ai-emoji',name: 'Add AI Emoji Prefix to Title',action: ()=>triggerDocumentCommand('addEmojiToTitle','Command: Add AI-generated emoji prefix to the document title.','Add AI emoji prefix is only available when a document is open.'),category: 'Editor',icon: SparklesIcon,keywords: 'emoji ai title prefix'},
2699
+
{id: 'document-regenerate-title',name: 'Regenerate Title with AI',action: ()=>triggerDocumentCommand('regenerateTitle','Command: Regenerate document title with AI.','Title regeneration is only available when a document is open.'),category: 'Editor',icon: RefreshIcon,keywords: 'title rename ai regenerate'},
2700
+
{id: 'document-open-language-selector',name: 'Open Document Language Selector',action: ()=>triggerDocumentCommand('openLanguageSelector','Command: Open document language selector.','Language selection is only available when a document is open.'),category: 'Editor',icon: CommandIcon,keywords: 'language change selector locale'},
2701
+
{id: 'document-cycle-layout',name: 'Cycle Editor Layout Modes',action: ()=>triggerDocumentCommand('cycleViewMode','Command: Switch editor layout mode.','Layout switching is only available when a document is open.'),category: 'View',icon: LayoutVerticalIcon,keywords: 'layout switch editor preview split'},
2702
+
{id: 'document-toggle-inline-diff',name: 'Toggle Inline Diff Mode',action: ()=>triggerDocumentCommand('toggleInlineDiff','Command: Toggle inline diff mode.','Inline diff mode is only available when a document is open.'),category: 'View',icon: DocumentDuplicateIcon,keywords: 'diff compare changes inline'},
2703
+
{id: 'document-open-history',name: 'Open Document History Panel',action: ()=>{
2704
+
if(!activeDocument){
2705
+
addLog('WARNING','Document history is only available when a document is open.');
2706
+
return;
2707
+
}
2708
+
addLog('INFO','Command: Open document history panel.');
{id: 'document-cancel-unsaved',name: 'Cancel Unsaved Changes',action: ()=>triggerDocumentCommand('cancelChanges','Command: Cancel unsaved document changes.','Canceling unsaved changes is only available when a document is open.'),category: 'Editor',icon: UndoIcon,keywords: 'cancel undo revert discard'},
2715
+
{id: 'document-manual-save',name: 'Save Document Version',action: ()=>triggerDocumentCommand('manualSave','Command: Manually save a document version.','Manual saves are only available when a document is open.'),category: 'Editor',icon: SaveIcon,keywords: 'save version commit manual'},
2716
+
{id: 'document-copy-active-content',name: 'Copy Active Document Content',action: ()=>triggerDocumentCommand('copyContent','Command: Copy active document content.','Copying document content is only available when a document is open.'),category: 'Editor',icon: CopyIcon,keywords: 'copy clipboard content editor'},
2717
+
{id: 'document-ai-refine',name: 'Refine Document with AI',action: ()=>triggerDocumentCommand('refineWithAI','Command: Request AI refinement of the document content.','AI refinement is only available when a document is open.'),category: 'Editor',icon: SparklesIcon,keywords: 'ai refine improve suggestions'},
0 commit comments