Remove lines matching pattern

dieses mal hier einen super Tipp gefunden https://vimtricks.com/p/vimtrick-remove-lines-matching-pattern/

Using Vim’s powerful “global” command, :g for short. To remove lines matching a pattern, simply use the /d flag to the command. Here are some examples:

:g/pattern/d – Remove lines matching pattern
:g!/pattern/d – Remove lines that do NOT match the pattern

Neues Spielzeug: VIM

Habe gerade für mich VIm endeckt und bin gerade fleißig am sammeln von howTo’S, Hinweise und Tipps aller Art.

Um Augenkrebs zuverhindern ist es bei :syntax on ganz gut mal das colorscheme zu tauschen.

Bei code-bude.net habe ich dann die für mich passenden Hinweise gefunden.

Eingabe von

:colo und dann die Tastem CTRL+d um alle installiert colorschemes anzuzeigen.
danach eines aussuchen.

Bei http://vimcolors.com/ oder http://cocopon.me/app/vim-color-gallery/ findet man auch viele fertige Schemes die sich dann auch einbinden lassen

z.B.

Put monokai.vim file in your ~/.vim/colors/ directory and add the following line to your ~/.vimrc:

syntax enable
colorscheme monokai