LoremIpsum icon indicating copy to clipboard operation
LoremIpsum copied to clipboard

Shortcut should be configurable

Open bodinsamuel opened this issue 7 years ago • 3 comments

Hi,

on Mac (Alt+Shift+L) is already used (natively) to print a pipe "|" You can imagine how your shortcut is making coding a bit harder with this behaviour :D

I searched a way to change the shortcut but It seems there is now way to do that. Can you help me? :)

Thanks

bodinsamuel avatar Feb 15 '18 10:02 bodinsamuel

Yes major issue on OSX, did you find a solution ?

revolunet avatar Dec 30 '18 03:12 revolunet

Nope, unfortunately :/

bodinsamuel avatar Dec 31 '18 17:12 bodinsamuel

Just add in Sublime Text > Settings… > Key Bindings

  { "keys": ["alt+shift+l"], "command": "insert", "args": {"characters":"|"} },
  { "keys": ["super+alt+shift+l"], "command": "lorem_ipsum"}
  # Or whatever shortcut you want

PhilippePerret avatar Nov 15 '23 10:11 PhilippePerret