ftp -o - https://jcs.org/move_in | sh -

vimrc: better filename tab completion

+5
+5
.vimrc
··· 25 25 set spellfile=~/.vimspell.add " my goodwords 26 26 set tabstop=4 " default tabs at 4 spaces 27 27 set viminfo= " annoying! 28 + set wildmode=longest,list,full " better filename tab completion 28 29 29 30 set t_Co=256 " use all 256 colors 30 31 syntax on " enable syntax highlighting ··· 181 182 " i hold shift a lot, make :W work like :w and :Q like :q 182 183 cabbr W w 183 184 cabbr Q q 185 + 186 + " disable annoying behavior where starting an auto-indented line with a hash 187 + " makes it unindent and refuse to >> 188 + :inoremap # X# 184 189 185 190 " :w !sudo tee % 186 191