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": "%" | |
} | |
}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Thanks. I was looking for something like that.