last update: Dec 4, 2020
- macOS >= 10.14 (Mojave); tested with 10.15 (Catalina)
- homebrew properly installed
| <!-- Usage --> | |
| <template> | |
| <Tabs> | |
| <Tab name="Foo">Content of tab Foo</Tab> | |
| <Tab name="Bar">Content of tab Bar</Tab> | |
| </Tabs> | |
| </template> | |
| <script> |
| <template> | |
| <div :test="$helpers.foo1()" :test2="bar()"></div> | |
| </template> | |
| <script> | |
| import { bar } from '@/helpers/utils'; | |
| </script> |
| let lowercase = 'abcdefghijklmnopqrstuvwxyz' | |
| let uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
| let numbers = '0123456789' | |
| let punctuation = "<>`@#~!\"$%^&/()=+*-_.,;:?\\\'{}[] " " and space | |
| for str in [lowercase, uppercase, numbers, punctuation] | |
| for key in split(str, '\zs') | |
| execute printf("noremap <silent> <buffer> <nowait> %s :call DO_SOMETHING_OR_NOTHING<cr>", key) | |
| endfor | |
| endfor |
last update: Dec 4, 2020
Am planning to open source this when I get some breathing room, but a gist will do for now.
Usage:
<Scroller top=0.2 bottom=0.8 threshold=0.5 bind:index bind:offset bind:progress parallax>
<div slot='background'>
<!-- fixed, or parallaxing (if the parallax option is set) background -->
</div>See https://github.com/romainl/idiomatic-vimrc for an up-to-date version.
| {"version":1,"resource":"file:///c%3A/Users/user/study/dqflex-main/src/API/constants.js","entries":[{"id":"nYPQ.js","timestamp":1673332920140}]} |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
| plugin | |
| naming convention: name_of_plugin.vim | |
| these files are sourced for all file types | |
| doc | |
| naming convention: name_of_plugin.txt | |
| these files document the functionality of a plugin | |
| color | |
| naming convention: name_of_colorscheme.vim |