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
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,35 @@
"details": "Match the scope at the end of the line",
"kind": ["variable", "k", "key"],
},
{
"trigger": "overlay_has_focus",
"details": "Overlay has focus",
"kind": ["variable", "k", "key"],
},
{
"trigger": "overlay_name",
"details": "Name of the overlay open",
"kind": ["variable", "k", "key"],
},
{
"trigger": "group_has_multiselect",
"details": "Group has multiselected tabs",
"kind": ["variable", "k", "key"],
},
{
"trigger": "group_has_transient_sheet",
"details": "Group has a transient sheet",
"kind": ["variable", "k", "key"],
},
{
"trigger": "has_snippet",
"details": "Word before cursor expands to a snippet",
"kind": ["variable", "k", "key"],
},
{
"trigger": "is_javadoc",
// "details": "TODO",
"kind": ["variable", "k", "key"],
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,10 @@ contexts:
- match: |-
(?x)(")((?:preceding_|following_)?text|num_selections|selection_empty
|has_(?:next|prev)_field
|(?:panel|overlay|auto_complete|popup)_visible|panel|panel_has_focus
|last_command|indented_block
|(?:panel|auto_complete|popup)_visible|panel|panel_has_focus
|last_command|indented_block|has_snippet|is_javadoc
|overlay_(?:has_focus|visible|name)
|group_has_(?:multiselect|transient_sheet)
)(")
scope: meta.context.key-value.key.other.sublime-keymap string.quoted.double.json
captures:
Expand Down