Skip to content

Commit

Permalink
fix for #38
Browse files Browse the repository at this point in the history
  • Loading branch information
hismailbulut committed Aug 11, 2022
1 parent 152a67e commit 7ec4f6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/neoray/neovim.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ func (proc *NvimProcess) echoMsg(format string, args ...interface{}) {

func (proc *NvimProcess) echoErr(format string, args ...interface{}) {
formatted := fmt.Sprintf(format, args...)
go proc.handle.WritelnErr(formatted)
proc.handle.WritelnErr(formatted)
// Also log this as an error
logger.LogF(logger.ERROR, format, args...)
}
Expand Down

0 comments on commit 7ec4f6c

Please sign in to comment.