]> git.mdlowis.com Git - projs/tide.git/commitdiff
started initial work on xedit man page
authorMichael D. Lowis <mike@mdlowis.com>
Tue, 28 Mar 2017 01:37:15 +0000 (21:37 -0400)
committerMichael D. Lowis <mike@mdlowis.com>
Tue, 28 Mar 2017 01:37:15 +0000 (21:37 -0400)
docs/edit.1
docs/edit.1.md
docs/xedit.1
docs/xedit.1.md

index f41ba6043ef1b424162bb138f3a1911c9b12288c..eee9e25ba1f44100e401d23b3f910ba1a7568fec 100644 (file)
 This script acts as a wrapper around xedit(1)\. It is responsible for setting up the environment variables and loading the rc file xedit(1) before launching a new instance of xedit(1) for each file provided on the command line\. If no files are provided, xedit(1) will be launched to edit a scratch buffer\.
 .
 .SH "FILES"
-$HOME/\.config/edit/editrc: Shell script loaded in current environment to make shell functions and environment variables available to xedit(1)
+.
+.TP
+$HOME/\.config/edit/editrc
+Shell script loaded in current environment to make shell functions and environment variables available to xedit(1)
 .
 .SH "ENVIRONMENT"
 .
index 134f99a80796e7f467b99d605beff406972b80ba..a5a4b5ecd591ae994e6de9d2ddb08c4806006687 100644 (file)
@@ -13,8 +13,9 @@ are provided, xedit(1) will be launched to edit a scratch buffer.
 
 ## FILES
 
-$HOME/.config/edit/editrc:
-Shell script loaded in current environment to make shell functions and environment variables available to xedit(1)
+* $HOME/.config/edit/editrc:
+    Shell script loaded in current environment to make shell functions and 
+    environment variables available to xedit(1)
 
 ## ENVIRONMENT
     
@@ -23,25 +24,25 @@ Shell script loaded in current environment to make shell functions and environme
     in the event that the user shell is bash(1)
 
 * `DISPLAY`:
-    This variable is used to determine if we are running in an X11 environment. If 
-    $DISPLAY is not set then the contents of the $EDITOR variable is used to 
-    determine what editor to launch in lieu of xedit(1). If $EDITOR is not set then 
-    vim(1) is launched instead.
+    This variable is used to determine if we are running in an X11 environment. 
+    If $DISPLAY is not set then the contents of the $EDITOR variable is used to 
+    determine what editor to launch in lieu of xedit(1). If $EDITOR is not set 
+    then vim(1) is launched instead.
     
 * `EDITRCFILE`:
-    Contains the path of the shell script which is loaded before xedit(1) to setup 
-    the environment and define shell functions which can be called during an editing
-    session.
+    Contains the path of the shell script which is loaded before xedit(1) to 
+    setup the environment and define shell functions which can be called during 
+    an editing session.
 
 * `EDITOR`:
-    Used as a fallback for when not running in an X11 system (xedit(1) is of course 
-    X11 only).
+    Used as a fallback for when not running in an X11 system (xedit(1) is of 
+    course X11 only).
 
 * `PATH`:
-    The $PATH variable is modified in order to add $HOME/config/edit/tools/ to the 
-    path. This folder is a standard location in which user scripts and tools can be 
-    placed so they can be used from within xedit(1) without cluttering up the normal
-    system path.
+    The $PATH variable is modified in order to add $HOME/config/edit/tools/ to 
+    the path. This folder is a standard location in which user scripts and tools
+    can be placed so they can be used from within xedit(1) without cluttering up
+    the normal system path.
 
 ## AUTHOR
 
index 83a609b62de88a104206be2d9bb9fc56e80c72ec..20e83f1ee12624fa0491e22022083fdcae9fbcb8 100644 (file)
@@ -8,19 +8,41 @@
 .
 .SH "SYNOPSIS"
 .
+.nf
+
+`xedit` [<file>]
+.
+.fi
+.
 .SH "DESCRIPTION"
+\fBxedit\fR is a text editor inspired by the Acme editor from the Plan 9 and Inferno operating systems\. Unlike Acme, \fBxedit\fR is a single window, single file editor\. Instead of baking a window manager into the editor, this job is relegated to an X11 window manager\. It is recommended that \fBxedit\fR be used with a tiling window manager such as dwm(1) or spectrwm(1)\. These window managers will make dealing with multiple windows much easier and more efficient\.
+.
+.SS "Windows"
+.
+.SS "Scrolling"
+.
+.SS "Typing"
 .
-.SH "OPTIONS"
+.SH "MOUSE HANDLING"
+.
+.SH "KEYBOARD SHORTCUTS"
+.
+.SH "COMMAND EXECUTION"
+.
+.SH "BUILTINS"
 .
 .SH "FILES"
 .
-.SH "ENVIRONMENT"
+.TP
+\fB$HOME/\.config/edit/editrc\fR
+Shell script loaded in current environment to make shell functions and environment variables available to xedit(1)
 .
-.SH "DIAGNOSTICS"
+.SH "ENVIRONMENT"
 .
 .SH "BUGS"
 .
 .SH "AUTHOR"
+Michael D\. Lowis
 .
 .SH "SEE ALSO"
-
+xedit(1) xpick(1) xfilepick(1) xtagpick(1)
index b030aad257ba831a726120c1d55de7e2b1464857..d49b21a1990a1ba36e69b8aaedca48cb8c5925b9 100644 (file)
@@ -1,10 +1,39 @@
 # xedit -- a text editor inspired by Acme from Plan 9 and Inferno
+
 ## SYNOPSIS
+
+    `xedit` [<file>]
+
 ## DESCRIPTION
-## OPTIONS
+
+`xedit` is a text editor inspired by the Acme editor from the Plan 9 and Inferno
+operating systems. Unlike Acme, `xedit` is a single window, single file editor.
+Instead of baking a window manager into the editor, this job is relegated to an
+X11 window manager. It is recommended that `xedit` be used with a tiling window
+manager such as dwm(1) or spectrwm(1). These window managers will make dealing
+with multiple windows much easier and more efficient.
+
+### Windows
+### Scrolling
+### Typing
+
+## MOUSE HANDLING
+## KEYBOARD SHORTCUTS
+## COMMAND EXECUTION
+## BUILTINS
 ## FILES
+
+* `$HOME/.config/edit/editrc`:
+    Shell script loaded in current environment to make shell functions and 
+    environment variables available to xedit(1)
+
 ## ENVIRONMENT
-## DIAGNOSTICS
+
 ## BUGS
 ## AUTHOR
+
+Michael D. Lowis
+
 ## SEE ALSO
+
+xedit(1) xpick(1) xfilepick(1) xtagpick(1)