Standard agnoster.zsh-theme, the only changes I made wat to fix the prompt location when using auto complete
A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
| // Get the estimated gas from the adopt method | |
| try { | |
| methodGasPrice = await this.contract.methods.adopt(adoptNum).estimateGas({ | |
| value: price, | |
| from: account | |
| }); | |
| } catch (err) { | |
| console.log("ERROR Method Gas Price"); | |
| } |
| // Bootstrap Mid-Small - col-ms-* - the missing grid set for Bootstrap3. | |
| // | |
| // This is a hack to fill the gap between 480 and 767 pixels - a missing range | |
| // in the bootstrap responsive grid structure. Use these classes to style pages | |
| // on cellphones when they transition from portrait to landscape. | |
| // | |
| // Contains: | |
| // Columns, Offsets, Pushes, Pulls for the Mid-Small layout | |
| // Visibility classes for the Mid-Small layout | |
| // Redefined visibility classes for the Extra Small layout |
| /** | |
| Usage: Just include this script after Marionette and Handlebars loading | |
| IF you use require.js add script to shim and describe it in the requirements | |
| */ | |
| (function(Handlebars, Marionette) { | |
| Marionette.Handlebars = { | |
| path: 'templates/', | |
| extension: '.handlebars' | |
| }; |
| // | |
| // Copyright (c) 2012 Cédric Luthi / @0xced. All rights reserved. | |
| // | |
| #if TARGET_IPHONE_SIMULATOR | |
| #define ITEMISENABLED_LENGHT_IOS5 23 | |
| #define ITEMISENABLED_LENGHT_IOS6 24 | |
| #define STATUSBARBATATYPEENCODING_IOS5 "^{?=[23c][64c]ii[100c]" | |
| #define STATUSBARBATATYPEENCODING_IOS6 "^{?=[24c][64c]ii[100c]" |
| [ | |
| { | |
| "keys": ["ctrl+w"], | |
| "command": "run_multiple", | |
| "args": { | |
| "commands": [ | |
| {"command": "find_under_expand", "args": null, "context": "window"}, | |
| {"command": "show_panel", "args": {"panel": "find"}, "context": "window"} | |
| ] | |
| } |
| // swap the keybindings for paste and paste_and_indent | |
| { "keys": ["super+v"], "command": "paste_and_indent" }, | |
| { "keys": ["super+shift+v"], "command": "paste" } |