-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bindings and documentation cleanup: Added new keybindings of 'ctrl+>'…
… to jump to definition and 'ctrl+<' to jump back. Fixed README to reflect proper binding of 'ctrl+SHIFT+left-click' for jump to definition, and added 'ctrl+shift+right-click' to jump back. Added symbol list commands to command palette.'
- Loading branch information
Greg Williams
committed
Oct 20, 2012
1 parent
e2eb539
commit c66c34c
Showing
4 changed files
with
52 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,33 @@ | ||
[ | ||
{ | ||
"args": {}, | ||
"caption": "CTags: Rebuild Tags", | ||
"command": "rebuild_tags" | ||
}, | ||
{ | ||
"caption": "CTags: Show Symbols (file)", | ||
"command": "show_symbols", | ||
"context": [ | ||
{ | ||
"key": "selector", | ||
"match_all": true, | ||
"operand": "source -source.css", | ||
"operator": "equal" | ||
} | ||
] | ||
}, | ||
{ | ||
"caption": "CTags: Show Symbols (all)", | ||
"command": "show_symbols", | ||
"args": { | ||
"type": "multi" | ||
}, | ||
"context": [ | ||
{ | ||
"key": "selector", | ||
"match_all": true, | ||
"operand": "source -source.css", | ||
"operator": "equal" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters