Last active
February 2, 2020 18:19
-
-
Save szTheory/0e8022f365531d4d1581ef1c56826a76 to your computer and use it in GitHub Desktop.
Add a keyboard shortcut for Elixir pipeline operator |> in Visual Studio Code with the Macros extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"key": "cmd+i", | |
"command": "macros.addPipeline" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"macros.list": { | |
"addPipeline": [{"command": "type", "args": {"text": "|> "}}] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment