๐Ÿ’พ Archived View for bbs.geminispace.org โ€บ u โ€บ stack โ€บ 2773 captured on 2023-11-04 at 16:36:46. Gemini links have been rewritten to link to archived content

View Raw

More Information

โฌ…๏ธ Previous capture (2023-09-28)

โžก๏ธ Next capture (2023-11-14)

๐Ÿšง View Differences

-=-=-=-=-=-=-

Comment by ๐Ÿš€ stack

Re: "Configuration tricks, tips, etc."

In: s/vim

J-K combination for <ESC>

I use it on all installations: it is much faster to jk than move my pinky off the typing position to ESC...

iremap jk <Esc>

๐Ÿš€ stack

2023-07-04 ยท 4 months ago

7 Later Comments โ†“

๐Ÿฆ Arkaeriit

Use \c before a regex to make it case insensitive and use \v to make special characters such as ( or | not need an escape. I personally mapped <C-F> to /\c\v to make it do a powerfull and easy seach.

๐Ÿฆ Arkaeriit

If your Vim is compiled with support for use in a GTK window or something like that, you can use the register " to access the system clipboard. Binding <C-C> and <C-V> to access this register is quite nice.

๐Ÿ Addison

I always remap my CapsLock key to function as Escape. Much more convenient.

2023-07-05 ยท 4 months ago

๐Ÿš€ stack

@Addison: I am in the habit of swapping CapsLock and Ctrl, from my Emacs days. jk is a pretty good compromise, although I can see that getting out of insert mode is needed much more often than some ctrl combo...

๐Ÿ”ญ TheSpoonCarver

I'm trying to weed myself off of the plugins like easymotion that allow you to jump to any character on screen in just a few taps. Instead, I've been trying to use search offsets more, so /foo/1 goes to the line after foo, or /foo/e+5 goes to 5 characters to the right of foo

2023-07-06 ยท 4 months ago

๐Ÿฆ Arkaeriit

@TheSpoonCarver Thanks for the tip. I didn't knew such a feature existed. I will check it out.

๐Ÿ‘ป simul8

My favorites are:

gq - autoformat/wrap lines

di( or di{ or di< or di[ - deletes everything between braces

. - performs last editing action (macro)

q - sets macro

visual-mode - great for commenting out a block of code

And the best key sequence that I wish vim tutorials would cover is....

ctrl-c - It's the touch-typist friendly equivalent to esc.

2023-07-25 ยท 3 months ago

Original Post

๐ŸŒ’ s/vim

Configuration tricks, tips, etc.

๐Ÿ’ฌ stack ยท 8 comments ยท 2023-07-04 ยท 4 months ago