Up Next:
* context sensitive selection of words, commands, line numbers, or filenames.
+* Implement X Selection protocol for handling clipboard and primary selections
* Tag line count should account for wrapped lines
* ctrl+alt+f should find next occurence of previous search term
* invalid memory accesses while viewing docs/waf
The Rest:
-* Implement X Selection protocol for handling clipboard and primary selections
* add a distinct state for pointer move versus drag
* Add a SaveAs tag that takes an argument for the filename to save as
* Add a GoTo tag for ctags lookup and line number jump
--- /dev/null
+#!/bin/sh
+
+# Add the editing tools directory to your PATH var so its contents may be used
+# while editing.
+export PATH="$HOME/.config/edit/tools:$PATH"
+
+# Now figure out the correct editor to execute
+if [ -z "$DISPLAY" ]; then
+ if [ -z "$EDITOR" ]; then
+ vim "$@"
+ else
+ "$EDITOR" "$@"
+ fi
+elif [ 0 -eq $# ]; then
+ (nohup xedit > /dev/null 2>&1) &
+else
+ for f in "$@"; do
+ (nohup xedit "$f" > /dev/null 2>&1) &
+ done
+fi