Skip to content

Instantly share code, notes, and snippets.

@re4lfl0w
Last active August 29, 2015 14:02
Show Gist options
  • Save re4lfl0w/e03669d2c2f60c34c518 to your computer and use it in GitHub Desktop.
Save re4lfl0w/e03669d2c2f60c34c518 to your computer and use it in GitHub Desktop.
문제: 콜론 다음에 공백이 없는것들이 있는데 여기에도 공백을 추가하고 싶다!
$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