#VimTips
One of the most satisfying features of my #Neovim setup is effortlessly moving multiple lines up or down while keeping the formatting intact.

#VimTips
November 17, 2024 at 3:06 AM
VimTips: So, you keep README notes with blocks of commands you need to run to do something. You can run one or more without leaving vim simply by visual select and

w !bash

Ok, by what if I wanted them running *on a separate window* 👇
April 13, 2025 at 5:41 PM
VimTips: The highest ratio of how frequently used per day to how many years it took me to discover goes to

Ctrl + n

autocomplete from top-k most frequent words (in current doc/buffer). Once you get an intuition for how much prefix you need, a big time saver (for people that can't type like me)
June 23, 2025 at 1:36 AM
VimTips:

"What? The code is not working now? I am sure something terrible and super complicated has happened, maybe some corruption of the virt ..."

:!git difftool -- %

"Nopes, it's a dumb mistake on the last 10 lines of code I just added, :dp :w!"
February 27, 2025 at 1:24 AM
🧠 Avoid the rage of accidental file loss in vim:

Just add this to your .vimrc:

‣ set backup
‣ set backupdir=~/.vim/backups//

Now Vim quietly saves backups in the background.
You can still swear… but now it’s optional. 😅

#Linux #VimTips #TerminalLife #OpenSource #BlueSkyTech
June 21, 2025 at 10:17 PM
#Linux #Command: #vim

The legendary, lightning-fast text editor for power users. From writing code to configuring servers, vim offers unmatched control, efficiency, and flexibility.

#vimEditor #PowerEditing #CommandLineTools #VimTips #TerminalSkills #OpenSource #TechGuide
June 22, 2025 at 12:01 PM
Stop editing at 10% of Vim's power. Master registers, :norm, fuzzy completion, linematch diff, and 16 more Vim tips and tricks. Tested on latest Vim 9.2.

Full guide here: ostechnix.com/vim-tricks/

#Vim #Vimtips #Vimtricks #Editor #Opensource #Linux
20 Vim Tricks That Will Change How You Edit - OSTechNix
Stop editing at 10% of Vim's power. Master registers, :norm, fuzzy completion, linematch diff, and 16 more Vim tricks. Tested on Vim 9.2.
ostechnix.com
April 1, 2026 at 2:27 PM
VimTips: Vim's visual block selection is great for slice operations in tables or stuff aligned across many lines

Ctrl+v and now selection only happens from cursor's column. You can select one or more columns of tables, cut (d) and paste (p) them elsewhere in the table (or elsewhere)
January 26, 2025 at 12:17 AM
VimTips: One of the biggest source of subtle bugs in my experiments code solved

noremap <C-a> <Nop>

can you guess? I have tmux C-a as my prefix key ... and C-a is _increment number under cursor_ in vim ... the times some model or variable got magically incremented by one ...
May 14, 2025 at 12:06 AM
What's a cool #Neovim feature, workflow, or setup you love?
Share yours—let's see what makes your config special!
#VimTips
One of the most satisfying features of my #Neovim setup is effortlessly moving multiple lines up or down while keeping the formatting intact.

#VimTips
November 24, 2024 at 12:53 PM
VimTips: Ok I keep giving the most long tail / weird ones, but I just used this: You can visual select and pipe to bash scripting. The output will overwrite your visual selected chunk

v <up/down> to select
!while read x;do echo "$x";done

Here we just replace with the same as an example.
January 23, 2025 at 7:43 PM
VimTips: In vimdiff

:windo set diff opt+=iwhite

to ignore indentation when diffing. Useful when change is just a localized new "if" but the new indenting of the code show changes everywhere
June 6, 2026 at 3:24 PM
Press " } " to move to the next blank line.

Press " { " to move to the previous blank line.

#vimtips #vim #neovim
February 24, 2026 at 11:48 AM
78/93

python-uvicorn-0.46.0-x86_64-2cf.txz: Rebuilt.
python-vimtips-0.2.7-x86_64-2cf.txz: Rebuilt.
python-wapiti-arsenic-28.5-x86_64-2cf.txz: Rebuilt.
python-wapiti3-3.2.10-x86_64-2cf.txz: Rebuilt.
python-wxpython-4.2.5-x86_64-2cf.txz: Rebuilt.
May 8, 2026 at 10:03 PM
10/13

urlscan-1.0.7-x86_64-1cf.txz: Removed.
Renamed to python-urlscan.
urlwatch-2.29-x86_64-2cf.txz: Removed.
Renamed to python-urlwatch.
vimtips-0.2.7-x86_64-7cf.txz: Removed.
Renamed to python-vimtips.
wapiti-arsenic-28.5-x86_64-1cf.txz: Removed.
December 6, 2025 at 5:16 PM
4/13

python-unicode-slugify-0.1.5-x86_64-1cf.txz: Added.
python-urlgrabber-4.1.0-x86_64-1cf.txz: Added.
python-urlscan-1.0.7-x86_64-1cf.txz: Added.
python-urlwatch-2.29-x86_64-1cf.txz: Added.
python-vimtips-0.2.7-x86_64-1cf.txz: Added.
December 6, 2025 at 5:16 PM
what. (ht @yiqingsim) RT @vimtips: /begin\_.*end will search for begin AND end over multiple lines. http://is.gd/4xZW
November 24, 2024 at 6:00 PM
"@andeligianis: Trying to get a handle on VIM..." the text editor? Be sure to follow @vimtips for some awesome recipes
November 13, 2024 at 9:00 AM
haha, we've all been there. perhaps they should follow @vimtips
November 13, 2024 at 4:55 AM
VimTips: Started editing a file under some folder structure that you forgot to create and now it does not save?

:!mkdir -p $(dirname %)
April 17, 2026 at 6:19 PM
VimTips: I use in my .vimrc

map ,o :exec "!open ".getline('.')<ESC>

to run "open" on current line under cursor. Linux/OSX is smart enough to call the appropriate program i.e. file explorer, pdf/image viewer, browser, etc.

TIL quoting lines prevents special vim chars, such as % & # to trigger
August 28, 2025 at 12:52 PM