Home › Forums › General XMetaL Discussion › Looking for Script to toggle capitalization › Reply To: Looking for Script to toggle capitalization
Reply to: Looking for Script to toggle capitalization
November 26, 2008 at 5:26 amI'd be content with the functionality you get in emacs:
Ctrl-u: Make the current word uppercase, starting where the cursor is. So if you have foobar and the cursor is on the b, you end up with fooBAR. If you have “foobar baz” with the cursor on the f and hit Ctrl+u twice, you have “FOOBAR BAZ”
Ctrl+c: Capitalize the current word. So if you have foobar and the cursor is on the b, you end up with fooBar. If you have “foobar baz” with the cursor on the f and hit Ctrl+c twice, you have “Foobar Baz”
Ctrl-l: Make the current word lowercase, starting where the cursor is. So if you have FOOBAR and the cursor is on the B, you end up with FOObar. If you have “FOOBAR BAZ” with the cursor on the f and hit Ctrl+l twice, you have “foobar baz”