remove dead code: allPermissionsGranted, simulateCopy, pendingSuggestionText, updateSuggestionText

This commit is contained in:
CREDO23 2026-04-03 20:16:23 +02:00
parent c5aa869adb
commit 080acf5e0a
7 changed files with 1 additions and 28 deletions

View file

@ -19,14 +19,6 @@ export function getFrontmostApp(): string {
return '';
}
export function simulateCopy(): void {
if (process.platform === 'darwin') {
execSync('osascript -e \'tell application "System Events" to keystroke "c" using command down\'');
} else if (process.platform === 'win32') {
execSync('powershell -command "Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.SendKeys]::SendWait(\'^c\')"');
}
}
export function simulatePaste(): void {
if (process.platform === 'darwin') {
execSync('osascript -e \'tell application "System Events" to keystroke "v" using command down\'');