[Cgdb-announce] CGDB 0.6.5 released
                
                Brought to you by:
                
                    bobbybrasko,
                    
                
                    crouchingturbo
                    
                
            
            
        
        
        
    | 
     
      
      
      From: Bob R. <bo...@br...> - 2010-01-03 19:23:32
      
     
   | 
cgdb-0.6.5 Released
-------------------
Downloading:
    Go to http://cgdb.sourceforge.net/download.php for download
    link and instructions.
This new version contains the following changes:
cgdb-0.6.5 (01/01/2010)
   * Turn autosourcereload to on by default. This matches GDB's behavior.
   * CGDB should successfully build on Mac OS X 10.5.
     Thanks Kyle McKay for sending in this patch.
   * Add support for :up and :down in the cgdb status bar.
     Thanks Benoit Pierre for reporting this.
   * Enhanced tgdb in a2 mode. It now understands GNAT's 
     pre-instance-choice, instance-choice, post-instance-choice extension.
   * Made searching and :commands a little more vi-like. If you abort a
     search, you can still recall the last search with 'n' or 'N'.  If you
     backspace to the beginning of the line, a :command or /search is
     aborted.
   * Added some new cgdb commands.
       :c is now a synonym for :continue
       :f is now a synonym for :finish
       :n is now a synonym for :next
       :r is not a synonym for :run
       :s is now a synonym for :step
       :start is a new command that will send "start" to the debugger
       :kill is a new command that will send "kill" to the debugger
   * Shortcut mode has been removed from cgdb. If you liked it, you can
     put these commands in your cgdbrc file,
       map r :run<CR>
       map c :continue<CR>
       map f :finish<CR>
       map n :next<CR>
       map s :step<CR>
     and you will get the same functionality. Do not forget that,
       F5 is the same as 'run'.
       F6 is the same as 'continue'.
       F7 is the same as 'finish'.
       F8 is the same as 'next'.
       F10 is the same as 'step'.
     are always available.
   * Added a feature to CGDB which allows it to ask readline what key
     sequence it uses for the Home and End keys. That way, if the terminfo
     database is wrong, but the OS vendor modified /etc/inputrc, CGDB will
     have a working Home and End key.
   * CGDB fully supports the use of maps now. The feature is similar in 
     nature to the vim map feature.  It supports map, unmap, imap
     and iunmap. The map/unmap work in CGDB mode and the imap/iunmap
     work in GDB mode.
   * Added the cgdbmodekey configuration option. This allows the user to
     change the key that switches them from GDB mode to CGDB mode. The
     default value is the Escape key. This is useful for users that want
     to use readline in vi-mode.
   * Fixed a bug in CGDB where the Insert and Delete keys were not 
     recognized properly all of the time.
Enjoy,
The CGDB Team
 |