CompError prints the specified completion message to stderr.
(msg string)
| 979 | |
| 980 | // CompError prints the specified completion message to stderr. |
| 981 | func CompError(msg string) { |
| 982 | msg = fmt.Sprintf("[Error] %s", msg) |
| 983 | CompDebug(msg, true) |
| 984 | } |
| 985 | |
| 986 | // CompErrorln prints the specified completion message to stderr with a newline at the end. |
| 987 | func CompErrorln(msg string) { |
no test coverage detected