start new:
tmux
start new with session name:
tmux new -s myname
| set langmap=ёйцукенгшщзхъфывапролджэячсмитьбюЁЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ;`qwertyuiop[]asdfghjkl\\;'zxcvbnm\\,.~QWERTYUIOP{}ASDFGHJKL:\\"ZXCVBNM<> | |
| nmap Ж : | |
| " yank | |
| nmap Н Y | |
| nmap з p | |
| nmap ф a | |
| nmap щ o | |
| nmap г u | |
| nmap З P |
| // Implementation in ES6 | |
| function pagination(c, m) { | |
| var current = c, | |
| last = m, | |
| delta = 2, | |
| left = current - delta, | |
| right = current + delta + 1, | |
| range = [], | |
| rangeWithDots = [], | |
| l; |
These use separate document structures instead of HTML, some are more modular libraries than full editors
| // React SSR renders out <meta tags with URL-encoded values. | |
| // That's bad if you need query parameters in your URLs. | |
| // Before: <meta property="og:image" | |
| // content="https://makelight-prismic-images.imgix.net/7f97d951970bbb15a8b3744e4c69499ffe969d66_img_1010.jpg?w=1200&h=630&fit=crop&crop=entropy&auto=format&ixlib=js-1.1.1" class="next-head"/> | |
| // (Notice the &s in the URL) | |
| // | |
| // After: <meta property="og:image" | |
| // content="https://makelight-prismic-images.imgix.net/cfb3a074bfcab5793eded64ef077dd6260d6d89b_img_0578.jpg?w=1200&h=630&fit=crop&crop=entropy&auto=format&ixlib=js-1.1.1" class="next-head"/> | |
| // (Notice & is now correctly & | |
| // |