JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Studio 12.3: Debugging a Program With dbx     Oracle Solaris Studio 12.3 Information Library
search filter icon
search icon

Document Information

Preface

1.  Getting Started With dbx

2.  Starting dbx

3.  Customizing dbx

4.  Viewing and Navigating To Code

5.  Controlling Program Execution

6.  Setting Breakpoints and Traces

7.  Using the Call Stack

8.  Evaluating and Displaying Data

9.  Using Runtime Checking

10.  Fixing and Continuing

11.  Debugging Multithreaded Applications

12.  Debugging Child Processes

13.  Debugging OpenMP Programs

14.  Working With Signals

15.  Debugging C++ With dbx

16.  Debugging Fortran Using dbx

17.  Debugging a Java Application With dbx

18.  Debugging at the Machine-Instruction Level

19.  Using dbx With the Korn Shell

ksh-88 Features Not Implemented

Extensions to ksh-88

Renamed Commands

Rebinding of Editing Functions

20.  Debugging Shared Libraries

A.  Modifying a Program State

B.  Event Management

C.  Macros

D.  Command Reference

Index

Rebinding of Editing Functions

The bind command allows rebinding of editing functions. You can use the command to display or modify the key bindings for EMacs-style editors and vi-style editors. The syntax of the bind command is:

bind
Display the current editing key bindings
bind key=definition
Bind key to definition
bind key
Display the current definition for key
bind key=
Remove binding of key
bind -m key=definition
Define key to be a macro with definition
bind -m
Same as bind

where:

key is the name of a key.

definition is the definition of the macro to be bound to the key.

The following are some of the more important default key bindings for EMacs-style editors:

^A = beginning-of-line
^B = backward-char
^D = eot-or-delete
^E = end-of-line
^F = forward-char
^G = abort
^K = kill-to-eo
^L = redraw
^N = down-history
^P = up-history
^R = search-history
^^ = quote
^? = delete-char-backward
^H = delete-char-backward
^[b = backward-word
^[d = delete-word-forward
^[f = forward-word
^[^H = delete-word-backward
^[^[ = complete
^[? = list-command

The following are some of the more important default key bindings for vi-style editors:

a = append
A = append at EOL
c = change
d = delete
G = go to line
h = backward character
i = insert
I = insert at BOL
j = next line
k = previous line
l = forward line
n = next match
N = prev match
p = put after
P = put before
r = repeat
R = replace
s = substitute
u = undo
x = delete character
X = delete previous character
y = yank
~ = transpose case
_ = last argument
* = expand
= = list expansion
- = previous line
+ = next line
sp = forward char
# = comment out command
? = search history from beginning
/ = search history from current

In insert mode, the following keystrokes are special:

^? = delete character
^H = delete character
^U = kill line
^W = delete word