nvim-pqf icon indicating copy to clipboard operation
nvim-pqf copied to clipboard

Leading spaces aren't preserved

Open sakhnik opened this issue 8 months ago • 2 comments

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                                                                                                                                                           
~                                                                                                                                                               

sakhnik avatar Jun 12 '24 15:06 sakhnik