cleanup ee

ivestatusline
This commit is contained in:
Stefan Etringer 2025-08-01 13:03:36 +00:00
parent 2bff29600c
commit 51ebad0f47
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ let g:ale_linters = {
nnoremap <Leader>ee :call InsertGoErrorHandling()<CR>
function! InsertGoErrorHandling()
let err_handling = "if err != nil { \r return err \r}"
let err_handling = "if err != nil {\r return err \r}"
let save_cursor = getpos(".")
execute "normal! a" . err_handling