diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/textadept/editing.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index 4ea30f96..b0e8bf62 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -578,6 +578,7 @@ end -- text through. May contain pipes. -- @name filter_through function M.filter_through(command) + assert(not (WIN32 and CURSES), 'not implemented in this environment') local s, e = buffer.selection_start, buffer.selection_end if s ~= e then -- Use the selected lines as input. |