Getting CMD-T in vim "for free"

  • If you always want tab completion to work, just turn it on.

      " Command/TAB Completion
      "set wildchar=<number>	   " Character typed to start wildcard expansion
      set wildmenu
      set wildmode=longest,list,full   " use ksh/tcsh autolist TAB completion
    
    EDIT: removed my stupid condescending remark about knowing how to configure vim. sorry.

  • This is cool. But often I wish there is a shortcut to open a bunch of files using wildcard characters, e.g :e <dir>/*.rb.