nvim-pqf
nvim-pqf copied to clipboard
Leading spaces aren't preserved
Hello! When my build script indents output lines with spaces, the output in nvim-pqf appears confusingly flat. Could we have the initial spaces preserved?
cat >build.sh <<END
#!/bin/bash
echo "first"
echo " second"
echo " third"
END
nvim +"set makeprg=./build.sh"
:make
Quickfix output:
[Без назви] 0,0-1 Усе
first
second
third
~