Volon
January 29, 2023 · View on GitHub

Volon
Volon is a plain text, markdown-focused, local-first notes app with IDE like text-editing keyboard shortcuts. It's meant the local storage of notes, but you can also log in to sync your notes across devices. Other helpful features:
- Multiple cursors,
- GitHub style markdown link pasting
- Command palette for finding notes (⌘K)
Text editing shortcuts
- Move line up:
Alt + Up - Move line down:
Alt + Down - Copy line up:
Shift + Alt + Up - Copy line down:
Shift + Alt + Down - Insert blank line:
Cmd + Enter(Ctrl + Enteron Windows) - Select line:
Ctrl + l(Alt + lon Windows) - Indent less:
Cmd + [(Ctrl + [ on Windows) - Indent more:
Cmd + ](Ctrl + ] on Windows) - Delete line:
Shift + Cmd + k(Shift + Ctrl + kon Windows) - Toggle comment:
Cmd + /(Ctrl + /on Windows) - Bold:
Cmd + b - Italicize:
Cmd + i
Screenshots
Minimal UI
Notes list and markdown preview enabled
Local dev (Vue 3 + TypeScript + Vite)]
(Subtitute pnpm for your package manager of choice)
pnpm install
pnpm run dev
Recommended IDE Setup
- VS Code + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
Type Support For .vue Imports in TS
TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensionsfrom VSCode's command palette - Find
TypeScript and JavaScript Language Features, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Windowfrom the command palette.