Вы упускаете торговые возможности:
- Бесплатные приложения для трейдинга
- 8 000+ сигналов для копирования
- Экономические новости для анализа финансовых рынков
Регистрация
Вход
Вы принимаете политику сайта и условия использования
Если у вас нет учетной записи, зарегистрируйтесь
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_saveWhere mkmql4 is a shell command:
So, can anybody help me? =)