From 1eb2b8321b2225cbe32e3904c3a96c4110c529cf Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 8 Aug 2012 19:37:32 +0200 Subject: [PATCH] make.kak: errjump also display the error description in the status line --- src/rc/make.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rc/make.kak b/src/rc/make.kak index b3f3751f..7918b2e5 100644 --- a/src/rc/make.kak +++ b/src/rc/make.kak @@ -16,4 +16,4 @@ hook global WinSetOption filetype=make %{ hook global WinSetOption filetype=(?!make).* %{ rmhl make-highlight; } -def errjump %{ exec 'xs^([^:]+):(\d+)(?::(\d+))?'; edit %sh{ echo ${kak_reg_1} ${kak_reg_2} ${kak_reg_3} } } +def errjump %{ exec 'xs^([^:]+):(\d+)(?::(\d+))?:([^\n]+)\n'; %sh{ echo "edit ${kak_reg_1} ${kak_reg_2} ${kak_reg_3}; echo ${kak_reg_4}" } }