Skip to content

Instantly share code, notes, and snippets.

@jbmusso
Last active November 11, 2015 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbmusso/af4a993e47fbd1e5aded to your computer and use it in GitHub Desktop.
Save jbmusso/af4a993e47fbd1e5aded to your computer and use it in GitHub Desktop.
Sublime Text automatically replace permille char (‰) with percent char (%)
// edit config file: Sublime Text 2 > Preferences > Key Bindings - User
[{
"keys": ["‰"],
"command": "insert_snippet",
"args": {
"contents": "%"
}
}]
@cauboy
Copy link

cauboy commented Nov 11, 2015

Thanks. I was looking for something like that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment