BookLeaf
Package for Sublime Text that allows you use ST as a notes app
Details
Installs
- Total 19
- Win 7
- Mac 7
- Linux 5
| Jun 25 | Jun 24 | Jun 23 | Jun 22 | Jun 21 | Jun 20 | Jun 19 | Jun 18 | Jun 17 | Jun 16 | Jun 15 | Jun 14 | Jun 13 | Jun 12 | Jun 11 | Jun 10 | Jun 9 | Jun 8 | Jun 7 | Jun 6 | Jun 5 | Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Linux | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
BookLeaf
A Sublime Text 4 package for managing scratch notes and snippets as individual files with fuzzy search.
Features
- Quick Panel Search - Fuzzy search across filenames AND file contents
- Easy File Creation - Create new scratch files with auto-generated timestamps, or save an unsaved tab directly into BookLeaf
- File Management - Delete files, open storage folder
- Configurable - Custom file extensions, date formats, preview settings
Installation
Package Control (Recommended)
- Open Command Palette (
Cmd+Shift+Pon macOS) - Select “Package Control: Install Package”
- Search for “BookLeaf”
Manual Installation
- Open Sublime Text's Packages folder (
Preferences > Browse Packages...) - Clone this repository:
git clone https://github.com/JoeFerrucci/BookLeaf-SublimeText.git BookLeaf
Usage
All commands are available via the Command Palette (Cmd+Shift+P) or keyboard shortcuts:
| Command | Shortcut | Description |
|---|---|---|
| BookLeaf: Open | Cmd+Shift+B, Cmd+Shift+L |
Browse and open scratch files |
| BookLeaf: New File | Cmd+Shift+B, Cmd+Shift+N |
Create a new scratch file, or save the current unsaved tab to BookLeaf |
| BookLeaf: Search Contents | Cmd+Shift+B, Cmd+Shift+S |
Search file contents |
| BookLeaf: Delete File | Cmd+Shift+B, Cmd+Shift+D |
Delete a scratch file |
| BookLeaf: Open Storage Folder | Open storage folder in Finder |
Key Bindings
Default chord bindings are included but commented out. To enable them, go to Preferences > Package Settings > BookLeaf > Key Bindings and uncomment the bindings you want.
To customize or add your own, open your user key bindings (Preferences > Key Bindings):
{ "keys": ["super+shift+b", "super+shift+l"], "command": "book_leaf" },
{ "keys": ["super+shift+b", "super+shift+n"], "command": "book_leaf_new" },
{ "keys": ["super+shift+b", "super+shift+s"], "command": "book_leaf_search" },
{ "keys": ["super+shift+b", "super+shift+d"], "command": "book_leaf_delete" }
Settings
Preferences > Package Settings > BookLeaf > Settings
{
// Default file extension: ".md", ".txt", ".json"
"default_extension": ".md",
// Date format for auto-generated filenames
"date_format": "%Y-%m-%d_%H%M%S",
// Show file content preview in Quick Panel
"show_file_preview": true,
// Number of lines to show in preview
"preview_max_lines": 3
}
Storage Location
Files are stored in: ~/Library/Application Support/Sublime Text/Packages/User/BookLeaf/
Requirements
- Sublime Text 4 (Build 4074+)
License
MIT License