We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f296f commit 9846e1cCopy full SHA for 9846e1c
src/main.js
@@ -243,6 +243,9 @@ const app = new Moon({
243
window.addEventListener('beforeunload', function(e) {
244
const existing_snippets = app.get('snippets').filter(function(s) {
245
return !s.deleted
246
- });
+ }).map(snippet => {
247
+ snippet.shown = true;
248
+ return snippet
249
+ })
250
ipc.sendSync('save_snippets', JSON.stringify(existing_snippets))
251
});
src/package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "code-snippets",
3
"productName": "CodeSnippets",
4
- "version": "0.2.2",
+ "version": "0.2.3",
5
"description": "A lightweight app to keep track of code snippets",
6
"license": "MIT",
7
"repository": "aaronduino/snippet-manager",
0 commit comments