Skip to content

Commit c35eb2b

Browse files
committed
Fix #266
1 parent 197150c commit c35eb2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/spectre/replace/sed.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local sed = {}
77
sed.init = function(_, config)
88
local uname = vim.loop.os_uname().sysname
99
local sed_args
10-
if uname == 'Darwin' then
10+
if uname == 'Darwin' or uname == 'FreeBSD' then
1111
sed_args = { '-i', '', '-e' }
1212
else
1313
sed_args = { '-i', '-E' }

0 commit comments

Comments
 (0)