Skip to content
Merged
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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The Path Operation Explorer provides a hierarchical tree view of all FastAPI rou

### Search for routes

Using ctrl+shift+E (cmd+shift+E on Mac), you can open the Command Palette and quickly search for routes by path, method, or name.
Use the search button in the Path Operation Explorer, or run **FastAPI: Search Path Operations...** from the Command Palette, to quickly search for routes by path, method, or name.

![Search Routes GIF](media/walkthrough/search.gif)

Expand Down Expand Up @@ -53,4 +53,3 @@ The FastAPI extension collects anonymous usage data and sends it to FastAPI to h

## License
MIT

18 changes: 8 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,6 @@
"category": "FastAPI Cloud"
}
],
"keybindings": [
{
"command": "fastapi-vscode.searchPathOperations",
"key": "ctrl+shift+e",
"mac": "cmd+shift+e"
}
],
"menus": {
"commandPalette": [
{
Expand Down Expand Up @@ -158,14 +151,19 @@
],
"view/title": [
{
"command": "fastapi-vscode.refreshPathOperations",
"command": "fastapi-vscode.searchPathOperations",
"when": "view == path-operation-explorer",
"group": "navigation@1"
},
{
"command": "fastapi-vscode.toggleRouters",
"command": "fastapi-vscode.refreshPathOperations",
"when": "view == path-operation-explorer",
"group": "navigation@2"
},
{
"command": "fastapi-vscode.toggleRouters",
"when": "view == path-operation-explorer",
"group": "navigation@3"
}
],
"view/item/context": [
Expand Down Expand Up @@ -242,7 +240,7 @@
{
"id": "search-path-operations",
"title": "Quickly Find Path Operations",
"description": "Instantly filter and navigate to any path operation in your application.\n[Search Path Operations](command:fastapi-vscode.searchPathOperations)",
"description": "Use the search button in the Path Operation Explorer to instantly filter and navigate to any path operation in your application.\n[Search Path Operations](command:fastapi-vscode.searchPathOperations)",
"media": {
"image": "media/walkthrough/search.gif",
"altText": "Search path operations quick pick showing filtered results"
Expand Down
Loading