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

Keyboard navigation/shortest path/dot file url open/multi-file support #8

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.*.sw?
*.pyc
*.egg-info
.project
build
dist
13 changes: 12 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,24 @@ Command Line
Escape halt animation
Ctrl-drag zoom in/out
Shift-drag zooms an area
F2 prev highlighted item
F3 next highlighted item
, select prev focused node's edge
. select next focused node's edge
p,j prev file
n,k next file
o browse file
Enter follow selected edge
Ctrl-click display shortest path (retargetable)
Ctrl-shift-click display reverse shortest path (retargetable)
right click dot url open ([URL="dots://file1;file2;..."]) (Linux only)

If no input file is given then it will read the dot graph from the standard input.

Embedding
---------

See included `example.py` script for an example of how to embedded _xdot.py_ into another application.
See included `sample.py` script for an example of how to embedded _xdot.py_ into another application.

[![Screenshot](https://raw.github.com/wiki/jrfonseca/xdot.py/xdot-sample_small.png)](https://raw.github.com/wiki/jrfonseca/xdot.py/xdot-sample.png)

Expand Down
Loading