像使用gdb一样在dlv(delve)中调试go程序时如何禁用断点?

When using gdb to debugging go program, we can disable all breakpoints by using 'disable' command, and then we can 'enable' breakpoints if we need. But when using dlv(delve), i'm not found command like 'disable' in gdb, I can only use 'clear' or 'clearall' command to delete breakpoints, but I need recreating breakpoints if I need using these breakpoints again.
My questing is if there any command exist in dlv can 'disable' breakpoints and then I can re-enable them?
Thanks.