This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Node.js CheatSheet. | |
// Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
// Download: http://nodejs.org/download/ | |
// More: http://nodejs.org/api/all.html | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fr: | |
activemodel: | |
errors: | |
format: '%{attribute} %{message}' | |
messages: &id001 | |
accepted: doit être accepté(e) | |
blank: doit être rempli(e) | |
confirmation: ne concorde pas avec la confirmation | |
empty: doit être rempli(e) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 50, | |
"auto_complete_selector": "source - comment", | |
"auto_complete_size_limit": 4194304, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// Square brackets aren't that usable in azerty. | |
// Replaces [ with ù and ] with $, closest usable combination to the American qwerty | |
{ "keys": ["super+shift+ù"], "command": "prev_view" }, | |
{ "keys": ["super+shift+$"], "command": "next_view" }, | |
{ "keys": ["super+ù"], "command": "unindent" }, | |
{ "keys": ["super+$"], "command": "indent" }, | |
{ "keys": ["super+alt+ù"], "command": "fold" }, |
NewerOlder