Skip to content

Commit

Permalink
Add menu
Browse files Browse the repository at this point in the history
Settings are not available otherwise unless the user knows where
they're installed.
  • Loading branch information
yeraydiazdiaz committed Mar 20, 2024
1 parent 5a619f5 commit f54d5b4
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Add settings menu

## 1.0.0 (2024-03-10)

- Add option to format JSON responses based on settings:
Expand Down
38 changes: 38 additions & 0 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[
{
"mnemonic": "n",
"caption": "Preferences",
"id": "preferences",
"children": [
{
"mnemonic": "P",
"caption": "Package Settings",
"id": "package-settings",
"children": [
{
"caption": "REST Client",
"children": [
{
"caption": "Settings – Default",
"command": "open_file",
"args": {
"file": "${packages}/REST Client/REST.sublime-settings"
}
},
{
"caption": "Settings – User",
"command": "open_file",
"args": {
"file": "${packages}/User/REST Client/REST.sublime-settings"
},
},
{
"caption": "-"
}
]
}
]
}
]
}
]

0 comments on commit f54d5b4

Please sign in to comment.