Fixes #337
This commit is contained in:
parent
5c7b649705
commit
f57f4d1342
@ -714,6 +714,17 @@ export class Editor {
|
|||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "Ctrl-.",
|
||||||
|
mac: "Cmd-.",
|
||||||
|
run: (): boolean => {
|
||||||
|
this.viewDispatch({
|
||||||
|
type: "show-palette",
|
||||||
|
context: this.getContext(),
|
||||||
|
});
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
},
|
||||||
]),
|
]),
|
||||||
EditorView.domEventHandlers({
|
EditorView.domEventHandlers({
|
||||||
// This may result in duplicated touch events on mobile devices
|
// This may result in duplicated touch events on mobile devices
|
||||||
|
@ -3,6 +3,13 @@ release.
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Next
|
||||||
|
|
||||||
|
* Added `Cmd-.` (Mac) and `Ctrl-.` (Linux/Windows) as an additional keyboard shortcut (to `Cmd-/`, `Ctrl-/`) for launching the command palette.
|
||||||
|
* Improvements to dark mode by [Max Richter](https://github.com/silverbulletmd/silverbullet/pull/396)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 0.2.13
|
## 0.2.13
|
||||||
|
|
||||||
* Support for multiple `order by` clauses in [[🔌 Directive/Query]] by [Siddhant Sanyam](https://github.com/silverbulletmd/silverbullet/pull/387)
|
* Support for multiple `order by` clauses in [[🔌 Directive/Query]] by [Siddhant Sanyam](https://github.com/silverbulletmd/silverbullet/pull/387)
|
||||||
|
Loading…
Reference in New Issue
Block a user