digitalmars.D.learn - Vanilla Vim with D
- Dlangofile (10/10) Jun 18 2016 Hi to all,
- Adam D. Ruppe (6/8) Jun 18 2016 :set makeprg=rdmd\ %
- Dlangofile (2/10) Jun 18 2016 Thank you Adam, so I'm going to learn about the quickfix...
Hi to all, I'm trying to approach Vim as an editor for D, starting from scratch... I've a pretty vanilla vimrc, and only CtrlP as a plugin: not a so bad experience right now! First question, what's the best, simplest and fast approach for: - compile from inside (rdmd or dmd right now) - jump in the code fixing the compilation errors? Thanks vim guys! /DF
Jun 18 2016
On Saturday, 18 June 2016 at 07:55:41 UTC, Dlangofile wrote:- compile from inside (rdmd or dmd right now) - jump in the code fixing the compilation errors?:set makeprg=rdmd\ % Do that to setup, then just :make to tell it to run that command and jump around to the errors it sees.
Jun 18 2016
On Saturday, 18 June 2016 at 12:36:04 UTC, Adam D. Ruppe wrote:On Saturday, 18 June 2016 at 07:55:41 UTC, Dlangofile wrote:Thank you Adam, so I'm going to learn about the quickfix...- compile from inside (rdmd or dmd right now) - jump in the code fixing the compilation errors?:set makeprg=rdmd\ % Do that to setup, then just :make to tell it to run that command and jump around to the errors it sees.
Jun 18 2016