SublimeERB icon indicating copy to clipboard operation
SublimeERB copied to clipboard

command erb not work in sublime 3

Open TangMonk opened this issue 10 years ago • 2 comments

I have key define

{
        "keys": ["super+shift+l"],
        "command": "erb",
}

but not work

TangMonk avatar Jul 23 '15 07:07 TangMonk

the following works for me: [ { "keys": ["super+shift+."], "command": "erb" } ]

bkazmer avatar Sep 22 '15 14:09 bkazmer

I got it to work in Sublime Text 3, after installing this package by Package Control, by changing this file on my Mac:

~/Library/Application Support/Sublime Text 3/Packages/User/Default (OSX).sublime-keymap

Open the file by going to Preferences => Key Bindings

Insert this line at the top, inside the left square bracket:

{ "keys": ["alt+."], "command": "erb" },

Going to Preferences => Package Settings, I don't see SublimeERB listed as a package. But it works.

rayning0 avatar Aug 13 '17 00:08 rayning0