added: command and shortcut to open press review
This commit is contained in:
parent
ef90b92c54
commit
5b173f74b8
10
main.js
10
main.js
|
@ -342,6 +342,11 @@ var commands = [
|
||||||
{
|
{
|
||||||
hint: "Download all vaults",
|
hint: "Download all vaults",
|
||||||
action: downloadallvaults
|
action: downloadallvaults
|
||||||
|
},
|
||||||
|
{
|
||||||
|
hint: "Open revue de presse",
|
||||||
|
action: loadreview,
|
||||||
|
shortcut: "ctrl+r"
|
||||||
}];
|
}];
|
||||||
|
|
||||||
var snippets = [
|
var snippets = [
|
||||||
|
@ -1984,6 +1989,11 @@ function loadtodo()
|
||||||
loadnote("todo");
|
loadnote("todo");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function loadreview()
|
||||||
|
{
|
||||||
|
loadnote("Revue de presse");
|
||||||
|
}
|
||||||
|
|
||||||
function loadquicknote()
|
function loadquicknote()
|
||||||
{
|
{
|
||||||
loadnote("Quick note");
|
loadnote("Quick note");
|
||||||
|
|
Loading…
Reference in New Issue