From 78893b6e5f65e93bca200ff698061601dabe04d6 Mon Sep 17 00:00:00 2001 From: IdanArye Date: Sat, 20 Feb 2016 18:02:00 +0200 Subject: [PATCH] Fix #25 set `print pretty off` and `print array off` in GDB --- autoload/vebugger/gdb.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/vebugger/gdb.vim b/autoload/vebugger/gdb.vim index f9584cb..f94ddce 100644 --- a/autoload/vebugger/gdb.vim +++ b/autoload/vebugger/gdb.vim @@ -7,6 +7,8 @@ function! vebugger#gdb#start(binaryFile,args) let l:debugger.pipes.err.annotation = "err&prg\t\t" call l:debugger.writeLine("set width 0") + call l:debugger.writeLine("set print pretty off") + call l:debugger.writeLine("set print array off") call l:debugger.writeLine("define hook-stop\nwhere\nend") if get(a:args,'pid') "Attach to process