diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2024-11-17 17:03:58 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2024-11-17 17:03:58 +1300 |
commit | 33e52f81e24ee12fe3c910caa93ab99e5b4b6f7f (patch) | |
tree | 7865bc951b1bffe045aa129a9336e962aa0a1242 | |
parent | First Python version (diff) | |
download | vixf-33e52f81e24ee12fe3c910caa93ab99e5b4b6f7f.tar.gz vixf-33e52f81e24ee12fe3c910caa93ab99e5b4b6f7f.zip |
Add module docstring
-rw-r--r-- | vixf.py3 | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,4 +1,11 @@ #!python3 +""" +Allow editing X11 fields with terminal editor in $VISUAL. Use keyboard +automation to select-all and copy text from the field, save it into a file, +edit that file with the terminal editor, and when the editor is done, read the +(presumably modified) text back from the file and paste it over the original +text. +""" import os import subprocess |