Skip to content

Instantly share code, notes, and snippets.

View ihor-lev's full-sized avatar
😎

Ihor Kysylevych ihor-lev

😎
View GitHub Profile
@ihor-lev
ihor-lev / jquery-es6-example.md
Created November 20, 2019 16:29 — forked from mgol/jquery-es6-example.md
jQuery ES6 modules example usage

jQuery source is now authored using ES6 modules. It's possible to use them directly in the browser without any build process.

To test it locally, first clone the jQuery repository:

git clone git@github.com:jquery/jquery.git

Then, write the following index.html file:

@ihor-lev
ihor-lev / sublime_fix_home_end_keys.md
Last active May 20, 2024 08:01
Fix Sublime Text Home and End key usage on Mac OSX

Sublime Text Home/End keys default functionality jumps to the beginning and end of the file.

Fix Home and End keys to move the cursor to the beginning and end of lines.

Preferences > Key Bindings - User

Adding the following to the array:

{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
@ihor-lev
ihor-lev / a_sublime3_legacy_theme.md
Last active July 5, 2019 09:57
Sublime 3 legacy UI

Legacy Theme

https://packagecontrol.io/packages/Theme%20-%20Legacy

Legacy color scheme

  1. Install "Colorsublime"
  2. Install at least one colorsublime theme: Ctrl+Shift+P "Colorsublime: Install theme"
  3. Create iPlastic.tmTheme file and put it in colorsublime folder
  4. Install iPlastic with Colorsublime