Skip to content

Instantly share code, notes, and snippets.

@snj
Created March 13, 2017 00:47
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 snj/10a950e53f9a5ee2bdb18c289ee6aa9c to your computer and use it in GitHub Desktop.
Save snj/10a950e53f9a5ee2bdb18c289ee6aa9c to your computer and use it in GitHub Desktop.
Sublime Text 3 の Emmet で ctrl+e では展開させずに行末移動させる
# Preferences - Package Settings - Emmet - Key Bindings(User)
[
{
"keys": [
"shift+space"
],
"args": {
"action": "expand_abbreviation"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.expand_abbreviation"
}
]
},
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} }
]
# Preferences - Package Settings - Emmet - Settings (User)
{
"disable_tab_abbreviations": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment