Skip to content

Instantly share code, notes, and snippets.

View squaredindex's full-sized avatar
🖖

Lev squaredindex

🖖
View GitHub Profile
@squaredindex
squaredindex / vscode-snakecase-to-camelcase.md
Created October 21, 2022 12:44 — forked from R3V1Z3/vscode-snakecase-to-camelcase.md
Convert all occurrences of snake_case to camelCase in VS Code. Windows/Linux walk-through here: https://youtu.be/vlHel1fN5_A

Convert snake_case to camelCase in VS Code

  • Press CTRL-H ( ⌥⌘F on Mac ).
  • Press ALT-R ( ⌥⌘R on Mac ).
  • Type _([a-zA-Z]).
  • Press TAB and type $1.
  • Press ALT-ENTER ( ⌥ENTER on Mac ).
  • Press F1 and type upper, then press ENTER.
  • Press CTRL-ALT-ENTER ( ⌥ENTER on Mac ).