Entries sort
It cames to my mind a weird idea : sorting parts of my .vimrc. Take few minutes to sort out this, it's easy !
Start file
set ai " set auto-indenting on for programming
syntax on " turn syntax highlighting on by default
set undolevels=100
set backup backupdir=/tmp " swap files. (/tmp/file~)
" (see also 'set writebackup' and 'set backupskip')
iab _file <C-R>% " filename (register %)
autocmd! BufWritePost $MYVIMRC source $MYVIMRC " auto-reload when ~/.vimrc is edited
" MYVIMRC is the platform-independent location
" of your .vimrc file
End file
autocmd! BufWritePost $MYVIMRC source $MYVIMRC " auto-reload when ~/.vimrc is edited
" MYVIMRC is the platform-independent location
" of your .vimrc file
iab _file <C-R>% " filename (register %)
set ai " set auto-indenting on for programming
set backup backupdir=/tmp " swap files. (/tmp/file~)
" (see also 'set writebackup' and 'set backupskip')
set undolevels=100
syntax on " turn syntax highlighting on by default
View Diff
1,6d0
< set ai " set auto-indenting on for programming
< syntax on " turn syntax highlighting on by default
< set undolevels=100
< set backup backupdir=/tmp " swap files. (/tmp/file~)
< " (see also 'set writebackup' and 'set backupskip')
< iab _file <C-R>% " filename (register %)
9a4,9
> iab _file <C-R>% " filename (register %)
> set ai " set auto-indenting on for programming
> set backup backupdir=/tmp " swap files. (/tmp/file~)
> " (see also 'set writebackup' and 'set backupskip')
> set undolevels=100
> syntax on " turn syntax highlighting on by default
Solutions
The best way to learn is to practice. Below, you will find some of the solutions other golfers have entered. To unlock higher ranked solutions, submit your own entry which does as well or better than the solutions you can currently see - climb the ladder!
Check out these helpful resources to improve your Vim skills... Game on.
Unlock 40 remaining solutions by signing in and submitting your own entry
#41 Teemu Okkonen / @TeemuOkkonen - Score: 26 - 07/05/15 @ 15:28
:7,9d<CR>PdGggP5jddGp3kddjpZZ
0 comments