This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Plugin] | |
| Loader=python3 | |
| Module=horizontal_scroll_fix | |
| IAge=2 | |
| Name=Horizontal Scroll Fix | |
| Description=When wordwrap is disabled and on a long line, clicking a line that is shorter will cause the horizontal scroll bar to follow the cursor. | |
| Authors=Acidnine; Gemini / ChatGPT / Claude / Grok | |
| Copyright=Copyright © 2026 Acidnine | |
| Website=https://vault21.net/ | |
| Icon=accessories-text-editor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Plugin] | |
| Loader=python3 | |
| Module=selection_stats | |
| IAge=3 | |
| Name=Selection Stats | |
| Description=Shows rows and character count in the status bar when text is selected. | |
| Authors=Acidnine; Gemini / ChatGPT / Claude | |
| Copyright=Copyright © 2026 Acidnine | |
| Website=https://vault21.net/ | |
| Version=1.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Plugin] | |
| Loader=python3 | |
| Module=column_edit | |
| IAge=2 | |
| Name=Column Edit | |
| Description=Ctrl+Shift+drag box/column selection with column insert and column delete modes (Sublime/VSCode-style). Works with Selection Stats plugin. | |
| Authors=Acidnine; Gemini / ChatGPT / Claude | |
| Copyright=Copyright © 2026 Acidnine | |
| Website=https://vault21.net/ | |
| Version=1.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Plugin] | |
| Loader=python3 | |
| Module=selection_duplicate | |
| IAge=3 | |
| Name=Duplicate Selected Text | |
| Description=Changes Ctrl+D to duplicate the selected text (if text is selected) instead of the entire line. | |
| Authors=Acidnine; Gemini / ChatGPT / Claude | |
| Copyright=Copyright © 2026 Acidnine | |
| Website=https://vault21.net/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Plugin] | |
| Loader=python3 | |
| Module=toggle_comment | |
| IAge=3 | |
| Name=Toggle Comment | |
| Description=Toggle a line comment prefix (# by default) on the current line or all selected lines (Ctrl+Shift+C). | |
| Authors=Acidnine; Gemini / ChatGPT / Claude | |
| Copyright=Copyright © 2026 Acidnine | |
| Website=https://vault21.net/ | |
| Version=1.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Plugin] | |
| Loader=python3 | |
| Module=xed_macro | |
| IAge=3 | |
| Name=Macro Recorder | |
| Description=Record and playback text insertions and deletions (CTRL+F8 to Record, CTRL+F9 to Play). | |
| Authors=Acidnine; Gemini / ChatGPT / Claude | |
| Copyright=Copyright © 2026 Acidnine | |
| Website=https://vault21.net/ | |
| Version=1.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // https://gist.github.com/bladeSk/6294d3266370868601a7d2e50285dbf5 | |
| // This file walks you through the most common features of PHP's SQLite3 API. | |
| // The code is runnable in its entirety and results in an `analytics.sqlite` file. | |
| // Create a new database, if the file doesn't exist and open it for reading/writing. | |
| // The extension of the file is arbitrary. |