fish_clipboard_paste: Fix multiline pasting

This commit is contained in:
Fabian Homborg 2017-04-23 13:38:32 +02:00
parent 17ba21cfe4
commit cc7d83fa94

View file

@ -20,6 +20,6 @@ function fish_clipboard_paste
set data (string replace -ra "(['\\\])" '\\\\\\\$1' -- $data)
end
if test -n "$data"
commandline -i -- "$data"
commandline -i -- $data
end
end