Does anyone use Vim for mql development?

 

Hi! I know that there are some people which use Vim for mql development preferably on Linux. I want to do the same but I faced with some problems with QuickFix list.

Maybe somebody can help me or share his own mql compiler plugin for Vim?

Anyway problem which I faced is that compile output doesnt appear in QuickFix list. But when I compile in shell it does. 

My compile plugin:

" Vim compiler file
" Compiler:     MQL4
" Maintainer: Me
" Last Change:  2017 Apr 20

if exists("current_compiler")
  finish
endif
let current_compiler = "mql4"

CompilerSet makeprg=mkmql4\ % 
let &errorformat='%f(%l\,%c) : %m'

let &cpo = s:cpo_save
unlet s:cpo_save


Where mkmql4 is a shell command: 


path="Z:${1//\//\\}"
wine /mt4/metaeditor.exe /compile: $path /log:"Z:\mt4\errors.log"


So, can anybody help me? =)

Причина обращения: