From 65d46e79d103aebd5504201835cb576ad6a9cc5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Machist=C3=A9=20N=2E=20Quintana?= Date: Mon, 29 Jun 2015 16:49:28 -0400 Subject: [PATCH 1/6] :memo: Clarify that CSON requires unique keys --- dot-atom/keymap.cson | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dot-atom/keymap.cson b/dot-atom/keymap.cson index dea689c12..d6b8b9b44 100644 --- a/dot-atom/keymap.cson +++ b/dot-atom/keymap.cson @@ -2,7 +2,8 @@ # # Atom keymaps work similarly to style sheets. Just as style sheets use # selectors to apply styles to elements, Atom keymaps use selectors to associate -# keystrokes with events in specific contexts. +# keystrokes with events in specific contexts. (Unlike style sheets however, +# each selector can only be declared once.) # # You can create a new keybinding in this file by typing "key" and then hitting # tab. From 8808cd3964303cba2357e28b5f33bc9433422ea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Machist=C3=A9=20N=2E=20Quintana?= Date: Mon, 29 Jun 2015 16:53:31 -0400 Subject: [PATCH 2/6] :memo: Clarify that keys must be unique in snippets.cson --- dot-atom/snippets.cson | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dot-atom/snippets.cson b/dot-atom/snippets.cson index e27c1582f..a500ae3f3 100644 --- a/dot-atom/snippets.cson +++ b/dot-atom/snippets.cson @@ -13,6 +13,8 @@ # 'prefix': 'log' # 'body': 'console.log $1' # +# Each scope can only be declared once. +# # This file uses CoffeeScript Object Notation (CSON). # If you are unfamiliar with CSON, you can read more about it here: # https://github.com/bevry/cson#what-is-cson From f2f9672d38ebb69b4118414fd3e4ee686b82e48b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Machist=C3=A9=20N=2E=20Quintana?= Date: Tue, 28 Jul 2015 07:16:01 -0400 Subject: [PATCH 3/6] :memo: :art: Drop parens --- dot-atom/keymap.cson | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot-atom/keymap.cson b/dot-atom/keymap.cson index d6b8b9b44..31cf501c9 100644 --- a/dot-atom/keymap.cson +++ b/dot-atom/keymap.cson @@ -2,8 +2,8 @@ # # Atom keymaps work similarly to style sheets. Just as style sheets use # selectors to apply styles to elements, Atom keymaps use selectors to associate -# keystrokes with events in specific contexts. (Unlike style sheets however, -# each selector can only be declared once.) +# keystrokes with events in specific contexts. Unlike style sheets however, +# each selector can only be declared once. # # You can create a new keybinding in this file by typing "key" and then hitting # tab. From 7b3549d66c5c72287270962a9a38ae974acb518c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Machist=C3=A9=20N=2E=20Quintana?= Date: Tue, 28 Jul 2015 07:17:57 -0400 Subject: [PATCH 4/6] :memo: Give an example of a snippet scope --- dot-atom/snippets.cson | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot-atom/snippets.cson b/dot-atom/snippets.cson index a500ae3f3..afe56845c 100644 --- a/dot-atom/snippets.cson +++ b/dot-atom/snippets.cson @@ -13,7 +13,7 @@ # 'prefix': 'log' # 'body': 'console.log $1' # -# Each scope can only be declared once. +# Each scope (e.g. '.source.coffee' above) can only be declared once. # # This file uses CoffeeScript Object Notation (CSON). # If you are unfamiliar with CSON, you can read more about it here: From d81c0ea8f9615e1a812e180af945c6c9b4a73a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Machist=C3=A9=20N=2E=20Quintana?= Date: Tue, 28 Jul 2015 07:51:45 -0400 Subject: [PATCH 5/6] :memo: Update CSON link to Atom Flight Manual --- dot-atom/keymap.cson | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dot-atom/keymap.cson b/dot-atom/keymap.cson index 31cf501c9..cc8a8228e 100644 --- a/dot-atom/keymap.cson +++ b/dot-atom/keymap.cson @@ -22,5 +22,6 @@ # * https://atom.io/docs/latest/behind-atom-keymaps-in-depth # # This file uses CoffeeScript Object Notation (CSON). -# If you are unfamiliar with CSON, you can read more about it here: -# https://github.com/bevry/cson#what-is-cson +# If you are unfamiliar with CSON, you can read more about it in the +# Atom Flight Manual: +# https://atom.io/docs/latest/using-atom-basic-customization#cson From 765e5154bfd981f9bce95e36661e99ea880bd06d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Machist=C3=A9=20N=2E=20Quintana?= Date: Tue, 28 Jul 2015 07:52:35 -0400 Subject: [PATCH 6/6] :memo: Update CSON link to Atom Flight Manual --- dot-atom/snippets.cson | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dot-atom/snippets.cson b/dot-atom/snippets.cson index afe56845c..eb8f1b22a 100644 --- a/dot-atom/snippets.cson +++ b/dot-atom/snippets.cson @@ -16,5 +16,6 @@ # Each scope (e.g. '.source.coffee' above) can only be declared once. # # This file uses CoffeeScript Object Notation (CSON). -# If you are unfamiliar with CSON, you can read more about it here: -# https://github.com/bevry/cson#what-is-cson +# If you are unfamiliar with CSON, you can read more about it in the +# Atom Flight Manual: +# https://atom.io/docs/latest/using-atom-basic-customization#cson