fedit

reference plugins

Real examples from the fedit repository. These are teaching projects, not a registry: there are no invented download counts, ratings, or remote install claims.

Clone the repository, then copy an example into your plugin directory:

$ git clone --depth 1 https://github.com/HelgeSverre/fedit
$ mkdir -p ~/.config/fedit/plugins
$ cp -R fedit/examples/wordcount ~/.config/fedit/plugins/

Restart fedit or run plugin reload. Review the source first: plugins are trusted .NET code with no sandbox.

wordcount

:wc

Count whitespace-separated words in the active buffer.

Notify

read source →

journal

:journal

Insert a timestamp at the cursor and reveal the stamped file in the sidebar.

InsertText · RevealPath · Notify

read source →

todo-count

:todocount

Walk the workspace file index and report the number of TODO markers.

Notify

read source →

todo-list

:todolist

Create a clickable TODO report whose rows jump to the source location.

NewBuffer · SetBufferActivation · OpenFileAt · Notify

read source →

todo-next

:todonext

Jump to the next TODO across open buffers and register a plugin keybinding.

MoveCursor · SwitchBuffer · RegisterKeybinding

read source →

jot

:jot

Keep a session scratchpad of code locations, mark entries done, and jump back.

NewBuffer · ReplaceRange · RevealPath · OpenFilePreview

read source →

Ready to write one? The plugin author guide covers the manifest, host lifecycle, API contract, installation, and debugging.