With vim-lsp in java code, after type
System.out.printf
the following candidates appears:
printf(Locale l, String format, Object... args)
printf(String format, Object... args)
When I choose first of the candidates,
System.out.printf
but I want to get:
System.out.printf(l, format, args)
or
System.out.printf(,,)
How can I do this?