summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/guide/migration/migrationguideida.md1
-rw-r--r--docs/guide/types/basictypes.md2
-rw-r--r--docs/guide/types/type.md2
3 files changed, 4 insertions, 1 deletions
diff --git a/docs/guide/migration/migrationguideida.md b/docs/guide/migration/migrationguideida.md
index 083d545e..b93cd5db 100644
--- a/docs/guide/migration/migrationguideida.md
+++ b/docs/guide/migration/migrationguideida.md
@@ -44,6 +44,7 @@ Some major exceptions are:
- `T` for Types
- `H` to toggle to/from Hex View
- `[TAB]` to toggle to/from disassembly
+- `0` toggles integer display between hexadecimal and decimal, which is `H` in IDA
## Cross-References
diff --git a/docs/guide/types/basictypes.md b/docs/guide/types/basictypes.md
index dcfd36f6..0687c2f0 100644
--- a/docs/guide/types/basictypes.md
+++ b/docs/guide/types/basictypes.md
@@ -112,7 +112,7 @@ the name of a type will take you to its definition.
* **Type > Make 16-bit Integer** - Create `uint16_t` members in selection
* **Type > Make 32-bit Integer** - Create `uint32_t` members in selection
* **Type > Make 64-bit Integer** - Create `uint64_t` members in selection
- * **Type > Invert Integer Sign** - Toggle integer signedness, e.g. between `uint8_t` and `int8_t`
+ * **Type > Toggle Integer Signedness** - Toggle integer signedness, e.g. between `uint8_t` and `int8_t`
* **Type > Cycle Integer Size** - Change integer member size in order: `uint8_t`, `uint16_t`, `uint32_t`, `uint64_t`
* **Type > Make 32-bit Float** - Create `float` members in selection
* **Type > Make 64-bit Float** - Create `double` members in selection
diff --git a/docs/guide/types/type.md b/docs/guide/types/type.md
index 9b0306b4..c375433c 100644
--- a/docs/guide/types/type.md
+++ b/docs/guide/types/type.md
@@ -9,6 +9,8 @@ The simplest way to directly manipulate types in disassembly is by viewing an ex
- `1`, `2`, `4`, `8`: The number hotkeys will create a data variable at the current location if none exists, and then change the size of the variable to an integer in the size of bytes specified in the hotkey.
- `d`: If you want to cycle through the different integer sizes, repeatedly pressing `d` has the same effect as pressing the numbers in order.
- `-`: To quickly toggle integers between signed and unsigned integers, you can use the `-` hotkey.
+ - `0`: To quickly toggle integer display between hexadecimal and decimal, you can use the `0` hotkey.
+ - `~`: To quickly toggle integer display between normal and bitwise complement, you can use the `~` hotkey.
- `a`: This hotkey sets or creates the current variable to a character array up until and including the next null byte.
- `o`: `o` will set or create the current variable to be a pointer reference.
- `*`: If you have a selection of identical variables, `*` will convert them into an array of elements. If you have no selection, the "Create Array" dialog will be shown allowing you to create an array of specific type and count at the current location.