diff options
author | 2012-09-12 11:24:11 -0400 | |
---|---|---|
committer | 2012-09-12 11:24:11 -0400 | |
commit | 9dc8ce16a1efc6482db6f1d5456d42958e79a06c (patch) | |
tree | e26ff636143fc74f92a6a3359a73e93194da6bc3 /modules/textadept/filter_through.lua | |
parent | 4305f32ac153b7a45a1c001da2fcd412af905168 (diff) | |
download | textadept-9dc8ce16a1efc6482db6f1d5456d42958e79a06c.tar.gz textadept-9dc8ce16a1efc6482db6f1d5456d42958e79a06c.zip |
Documentation overhaul.
Rewrote most of the manual and Lua API to complement each other.
Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
Diffstat (limited to 'modules/textadept/filter_through.lua')
-rw-r--r-- | modules/textadept/filter_through.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/filter_through.lua b/modules/textadept/filter_through.lua index 0e6a0fc0..e31de61f 100644 --- a/modules/textadept/filter_through.lua +++ b/modules/textadept/filter_through.lua @@ -4,7 +4,7 @@ local M = {} --[[ This comment is for LuaDoc. --- --- Filter-Through for the textadept module. +-- Filters text through shell commands. module('_M.textadept.filter_through')]] local cat = not WIN32 and 'cat' or 'type' @@ -12,7 +12,7 @@ local tmpfile = _USERHOME..'/.ft' local filter_through_active = false --- --- Prompts for a Linux, Mac OSX, or Windows shell command to filter text +-- Prompts for a Linux, BSD, Mac OSX, or Windows shell command to filter text -- through. -- The standard input (stdin) for shell commands is determined as follows: -- |