1

As the title says. I want to make keyboard shortcut for save with encoding + UTF-8 . Anyone has idea how to do that in key bindings file of Submlime text 3?

1 Answer 1

2

Open Preferences -> Key Bindings and enter the following into your sublime-keymap - User file:

{ "keys": ["ctrl+e"], "command": "save", "args": {"encoding": "utf-8"} },

(changing the key combination if you wish) and save. Remove trailing comma if above is the only custom key binding.

Result exhibits immediately:

Ctrl E

1
  • Worked on sublime 2
    – user237209
    Commented Apr 24, 2017 at 1:25

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .