'Fortran debugging in VSCode, conditional breakpoints

What is the correct syntax to set conditional breakpoints in VSCode for fortran, I tried if k.eq.6 and if k==6 and that does not work, by which I mean, the code doesn't break even if the condition is met. I get the error "a syntax error in expression near ..." Where ... is everything after the if.

The compiler I use is mpifort, which is a fortran compiler that comes with MPICH (for parallel computing), however I'm not debugging in parallel. Plugins are : Fortran breakpoint support, GDB Debugger - Beyond and Modern Fortran



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source