vite-plugin-open-in-editor
Version:
Vite plugin to open files directly in any editor (Cursor, VSCode, etc) from Alt+Click or Qwik dev tools.
10 lines (7 loc) • 302 B
text/typescript
import { Plugin } from 'vite';
interface OpenInEditorOptions {
editorBin?: string;
log?: boolean;
}
declare function vitePluginOpenInEditor(options?: OpenInEditorOptions): Plugin;
export { type OpenInEditorOptions, vitePluginOpenInEditor as default, vitePluginOpenInEditor as openInEditor };