This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $placeholders: (); | |
| @mixin placeholder($name) { | |
| $name: "%placeholder-#{$name}"; | |
| @if not index($placeholders, $name) { | |
| $placeholders: append($placeholders, $name) !global; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $placeholders: (); | |
| @mixin placeholder($name) { | |
| $name: "%placeholder-#{$name}"; | |
| @if not index($placeholders, $name) { | |
| $placeholders: append($placeholders, $name) !global; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $tmp: ( | |
| a/b: d/c | |
| ); | |
| /* #{inspect($tmp)} */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # if we have vscode installed... | |
| if hash code 2>/dev/null; then | |
| # VSCode as default editor | |
| export EDITOR="code -w" | |
| # VSCode command line currently does not support piping from stdin | |
| # This helper function wraps the `code` command to capture piped stdin | |
| function code() { | |
| # reference to the original `code` command | |
| local code=$(which code) |
OlderNewer