Skip to content

Instantly share code, notes, and snippets.

@acidnine
acidnine / horizontal_scroll_fix.plugin
Created August 24, 2026 03:20
XED Horizontal Scroll Fix
[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
@acidnine
acidnine / selection_stats.plugin
Created August 6, 2026 22:58
XED Plugin Selection Stats
[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
@acidnine
acidnine / column_edit.plugin
Last active August 24, 2026 03:18
XED Plugin Column Edit
[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
@acidnine
acidnine / selection_duplicate.plugin
Last active August 6, 2026 05:51
XED Plugin Selection Duplicate
[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/
@acidnine
acidnine / toggle_comment.plugin
Created July 31, 2026 16:38
XED Plugin Toggle Comment
[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
@acidnine
acidnine / xed_macro.plugin
Last active August 9, 2026 06:39
XED Plugin Macro Recorder
[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
@acidnine
acidnine / SQLite-PHP-quickstart.php
Last active January 24, 2025 05:55 — forked from bladeSk/SQLite-PHP-quickstart.php
SQLite3 PHP Quickstart Tutorial
<?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.