Mastodon Mastodon - VS Code keymaps in Sublime Text
 logo
  • Home 
  • Tags 
  • Blog posts 
  1. Home
  2. Blog posts
  3. VS Code keymaps in Sublime Text

VS Code keymaps in Sublime Text

Posted on November 4, 2021  (Last modified on July 11, 2024) • 1 min read • 96 words
Solved   Tools   Tools: Sublime Text  
Solved   Tools   Tools: Sublime Text  
Share via
Link copied to clipboard

I am used to VS code keymaps now, but I keep realizing how utterly fast Sublime Text is compared to the Microsoft behemoth. So I am gradually switching over, sloooowly, for some tasks.

A major pain was my muscle memory. Here’s the start of my solution:

[
  {"keys": ["alt+up"], "command": "swap_line_up"},
  {"keys": ["alt+down"], "command": "swap_line_down"},

  { "keys": ["super+alt+up"], "command": "select_lines", "args": {"forward": false} },
  { "keys": ["super+alt+down"], "command": "select_lines", "args": {"forward": true} },

  { "keys": ["shift+alt+up"], "command": "duplicate_line" },
  { "keys": ["shift+alt+down"], "command": "duplicate_line" },
]

(And yes, the final comma is actually parsed correctly by Sublime)

 Migrating Postgres databases in containers
Create user and database in postgres 
In case you want to follow me

Here are some links. The further to the right, the less active.

           
(c) Axel Bock | Powered by Hinode.
Code copied to clipboard