Last active
August 29, 2015 14:02
-
-
Save neoneo40/e03669d2c2f60c34c518 to your computer and use it in GitHub Desktop.
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
문제: 콜론 다음에 공백이 없는것들이 있는데 여기에도 공백을 추가하고 싶다! | |
$header-height:44px; | |
$header-border-color:#e7e7e7; | |
/** 콜론 다음에 공백이 없음 **/ | |
$fixed-bototm-height: 44px; | |
$header-background-color: rgba(255, 255, 255, 0.9); | |
/** 콜론 다음에 공백이 있음 **/ | |
# Using regex in Sublime Text2( find:, replace: 뒤에 공백 1칸씩이 있다.) | |
1. Back Reference | |
find: :(?=[^ ]) | |
replace: : \1 | |
2. Look Ahead | |
find: :(?=[^ ]) | |
replace: : |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment