emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/realgud-lldb 7fdc224 44/56: Fill in realgud cmds


From: Rocky Bernstein
Subject: [elpa] externals/realgud-lldb 7fdc224 44/56: Fill in realgud cmds
Date: Thu, 23 May 2019 02:11:44 -0400 (EDT)

branch: externals/realgud-lldb
commit 7fdc2247def5fcd9d50a4e8c23d2dc87dc1961e5
Author: rocky <address@hidden>
Commit: rocky <address@hidden>

    Fill in realgud cmds
---
 lldb/init.el    | 35 +++++++++++++++++++++--------------
 realgud-lldb.el |  2 +-
 2 files changed, 22 insertions(+), 15 deletions(-)

diff --git a/lldb/init.el b/lldb/init.el
index fff53d5..236632a 100644
--- a/lldb/init.el
+++ b/lldb/init.el
@@ -152,21 +152,28 @@ realgud-loc-pat struct")
   "Hash key is command name like 'continue' and the value is
   the lldb command to use, like 'process continue'")
 
-(setf (gethash "backtrace" realgud:lldb-command-hash) "bt")
-(setf (gethash "break"     realgud:lldb-command-hash) "b %X:%l")
-(setf (gethash "delete"    realgud:lldb-command-hash) "break delete %p")
-(setf (gethash "clear"     realgud:lldb-command-hash) "break clear %X:%l")
-(setf (gethash "continue"  realgud:lldb-command-hash) "process continue")
-(setf (gethash "disable"   realgud:lldb-command-hash) "break disable %p")
-(setf (gethash "enable"    realgud:lldb-command-hash) "break enable %p")
-(setf (gethash "eval"      realgud:lldb-command-hash) "print %s")
-(setf (gethash "finish"    realgud:lldb-command-hash) "thread step-out")
-(setf (gethash "quit"      realgud:lldb-command-hash) "quit")
-(setf (gethash "run"       realgud:lldb-command-hash) "run")
-(setf (gethash "step"      realgud:lldb-command-hash) "thread step-in --count 
%p")
-(setf (gethash "until"     realgud:lldb-command-hash) "thread until %l")
-(setf (gethash "lldb" realgud-command-hash) realgud:lldb-command-hash)
+(setf (gethash "backtrace"   realgud:lldb-command-hash) "bt")
+(setf (gethash "break"       realgud:lldb-command-hash) "b %X:%l")
+(setf (gethash "delete"      realgud:lldb-command-hash) "break delete %p")
+(setf (gethash "clear"       realgud:lldb-command-hash) "break clear %X:%l")
+(setf (gethash "continue"    realgud:lldb-command-hash) "process continue")
+(setf (gethash "delete"      realgud:lldb-command-hash) "*not-implemented*")  
;; Or rather don't know what the equvalent is
+(setf (gethash "delete_all"  realgud:lldb-command-hash) "*not-implemented*")
+(setf (gethash "disable"     realgud:lldb-command-hash) "break disable %p")
+(setf (gethash "disable_all" realgud:lldb-command-hash) "break disable")
+(setf (gethash "down"        realgud:lldb-command-hash) "down %p")
+(setf (gethash "enable"      realgud:lldb-command-hash) "break enable %p")
+(setf (gethash "enable_all"  realgud:lldb-command-hash) "break enable")
+(setf (gethash "eval"        realgud:lldb-command-hash) "print %s")
+(setf (gethash "finish"      realgud:lldb-command-hash) "thread step-out")
+(setf (gethash "quit"        realgud:lldb-command-hash) "quit")
+(setf (gethash "restart"     realgud:lldb-command-hash) "run")
+(setf (gethash "step"        realgud:lldb-command-hash) "thread step-in 
--count %p")
+(setf (gethash "shell"       realgud:lldb-command-hash) "platform shell %s")
+(setf (gethash "until"       realgud:lldb-command-hash) "thread until %l")
+(setf (gethash "up"          realgud:lldb-command-hash) "up %p")
 
+(setf (gethash "lldb" realgud-command-hash) realgud:lldb-command-hash)
 (setf (gethash "lldb" realgud-pat-hash) realgud:lldb-pat-hash)
 
 (provide-me "realgud:lldb-")
diff --git a/realgud-lldb.el b/realgud-lldb.el
index b8faade..0638adc 100644
--- a/realgud-lldb.el
+++ b/realgud-lldb.el
@@ -2,7 +2,7 @@
 
 ;; Author: Rocky Bernstein
 ;; Version: 1.0
-;; Package-Requires: ((realgud "1.4.2") (emacs "24"))
+;; Package-Requires: ((realgud "1.4.5") (emacs "24"))
 ;; URL: http://github.com/rocky/realgud-lldb
 ;; Compatibility: GNU Emacs 24.x
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]