Welcome to Shaun Luttin's public notebook. It contains rough, practical notes. The guiding idea is that, despite what marketing tells us, there are no experts at anything. Sharing our half-baked ideas helps everyone. We're all just muddling thru. Find out more about our work at bigfont.ca.

Contents tagged with vim

  • Undoing in Vim

    Tags: vim

    In some senses, u is a back button, r is a forward button, and U is a cancellation action. u undoes any single action (including U.) r redoes the action that u undid. U is a line change cancellation … more

  • Continuing with Vim

    Tags: vim

    These are the commands that I have started to adopt after having started with Vim. They are listed in the order that I started to adopt them. March 2015 :set autoindent maintain indentation on … more

  • Starting with Vim - The Absolute Basics

    Tags: vim

    i Insert Mode, for notepad style text editing esc Command Mode, for running any of the following commands v Visual Mode, to select text h j k l Move cursor left, down, up, right d Cut y Copy p … more