Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve documentation #199

Merged
merged 4 commits into from
Nov 14, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,22 @@ brew update
brew install chisel
```

Then follow the instructions that Homebrew displays to add chisel to your _~/.lldbinit_.
if `.lldbinit` file doesn't exist you can create it & open it by tapping on the terminal

Alternatively, download chisel and add the following line to your _~/.lldbinit_ file. If it doesn't exist, create it.
```shell
touch .lldbinit
open .lldbinit
```

Then add the following line to your `~/.lldbinit` file.

```Python
# ~/.lldbinit
...
command script import /usr/local/opt/chisel/libexec/fblldb.py
```

Alternatively, download chisel and add the following line to your _~/.lldbinit_ file.

```Python
# ~/.lldbinit
Expand Down