Attention! All this is a work in progress.
:help 'include' is set so that Vim recognizes both:
import Foo from 'foo';
Общяя информация:
| Keyboard Control | |
| LEFT and RIGHT | |
| Seek backward/forward 5 seconds. Shift+arrow does a 1 second exact seek (see --hr-seek). | |
| UP and DOWN | |
| Seek forward/backward 1 minute. Shift+arrow does a 5 second exact seek (see --hr-seek). | |
| Ctrl+LEFT and Ctrl+RIGHT | |
| Seek to the previous/next subtitle. Subject to some restrictions and might not always work; see sub-seek command. | |
| Ctrl+Shift+Left and Ctrl+Shift+Right | |
| Adjust subtitle delay so that the next or previous subtitle is displayed now. This is especially useful to sync subtitles to audio. | |
| [ and ] |
| export default [ | |
| 'reallyReallyBadTestWord', | |
| '5h1t', | |
| '5hit', | |
| 'anal', | |
| 'ar5e', | |
| 'ass', | |
| 'ass-fucker', | |
| 'asses', | |
| 'assfucker', |
Please read the manual carefuly
sudo apt-get update| #... | |
| function gitzip() { | |
| git archive -o $@.zip HEAD | |
| } | |
| #... gitzip ZIPPED_FILE_NAME |
| // Watch accesses/sets on a DOM element property. | |
| function watchPropsOn(el) { | |
| return new Proxy(el, { | |
| get(target, propKey, receiver) { | |
| //return Reflect.get(target, propKey, receiver); | |
| console.log('get', propKey); | |
| return el[propKey]; | |
| }, | |
| set(target, propKey, value, receiver) { | |
| console.log('set', propKey, value); |
| var _ = require('lodash'); | |
| var arr = [ | |
| {"name":"my2child1","title":"My 2 Child 1","parent":"my2"}, | |
| {"name":"my2child2","title":"My 2 Child 2","parent":"my2"}, | |
| {"name":"parent","title":"A single parent"}, | |
| {"name":"child-parent","title":"A child parent","parent":"child1"}, | |
| {"name":"my","title":"My"}, | |
| {"name":"my2","title":"My2"}, | |
| {"name":"child1","title":"Child 1","parent":"my"}, |