Redirect the output of a Vim or external command into a scratch buffer Usage (any shell) Show full output of command :hi in scratch window: :Redir hi Show full output of command :!ls -al in scratch window:
Law of Demeter with PHP (LoD) Law of Demeter or principle of least knowledge is a design guideline, that is using to make code more simple and stable. Rules for module Each unit should have only limited knowledge about other units: only units "closely" related to the current unit. Each unit should only talk to his friends; don't talk to strangers. Only talk to your immediate friends.