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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\directory\background\shell\sublime_text] | |
@="&Sublime here" | |
"Icon"="%ProgramFiles%\\Sublime Text 3\\sublime_text.exe" | |
[HKEY_CLASSES_ROOT\directory\background\shell\sublime_text\command] | |
@="C:\\Program Files\\Sublime Text 3\\sublime_text.exe \"%V\"" | |
[HKEY_CLASSES_ROOT\directory\shell\sublime_text] |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\directory\background\shell\nodejs] | |
"Icon"="cmd.exe" | |
@="&Node.js here" | |
[HKEY_CLASSES_ROOT\directory\background\shell\nodejs\command] | |
@="cmd.exe /s /k pushd \"%V\" & nodevars.bat" | |
[HKEY_CLASSES_ROOT\directory\shell\nodejs] |
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
var Foo = { | |
construct(who){ | |
this.me = who; | |
this.species = 'fufel'; | |
return this; | |
}, | |
identify(){ | |
return 'I am ' + this.me; | |
} | |
} |
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
// class | |
function Foo(who){ | |
// constructor | |
this.me = who; | |
this.species = 'fufel'; | |
// methods | |
Object.assign(Foo.prototype, { | |
identify(){ | |
return 'I am ' + this.me; |
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
var language = 'ru'; | |
//-------------- | |
const langDatabases = { | |
en: null, | |
ru: new Map(), | |
pl: new Map() | |
} |
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
{ | |
"always_show_minimap_viewport": true, | |
"auto_find_in_selection": true, | |
"caret_style": "blink", | |
"detect_indentation": false, | |
"drag_text": true, | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"fallback_encoding": "UTF-8", | |
"folder_exclude_patterns": |