On Wed, Aug 14, 2013 at 8:00 PM, Sebastian Wölke wrote: > > I currently use vim with pylcewn to debug my cpp programms. > > To debug STL-containers like vectors or maps comfortablely I added a > recommended script to my .gdbinit file > (http://www.yolinux.com/TUTORIALS/GDB-Commands.html#STLDEREF). This script > adds a few commands like pvector (print vector) or pmap (print map) to the > gdb command set. Is it possible to use this commands in my vim environment? > > I tried :Cpvector but vim responses always with: "E492: Not an editor > command: Cpvector" and I didn't find any solutions in the manuals.
Hi Sebastian, Sorry for the long delay. Try inserting a space between 'C' and the command, as in: :C pvector This is documented in the 'Commands' section of chapter 4 "Using pyclewn" within pyclewn help. -- Xavier Les Chemins de Lokoti: http://lokoti.alwaysdata.net ------------------------------------------------------------------------------ Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies and advance your career. Get an incredible 1,500+ hours of step-by-step tutorial videos with LearnDevNow. Subscribe today and save! http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk _______________________________________________ Pyclewn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pyclewn-general
