diff --git a/content/technical/2008/05/stop-vim-completion-searching-included-files.html b/content/technical/2008/05/stop-vim-completion-searching-included-files.html index 359ffab..bffc78c 100644 --- a/content/technical/2008/05/stop-vim-completion-searching-included-files.html +++ b/content/technical/2008/05/stop-vim-completion-searching-included-files.html @@ -1,5 +1,5 @@ -I use vim coupled with the SuperTab plugin for my text editing and auto-completion needs. In some vim setups (E.g. Mac OS X) it is configured by default to search included files when completing words. This sounds like a useful feature but it turns out not to be. It has a habit of searching the include files of system libraries and modules, the keywords of which you rarely want. Its also quite a slow operation as it trawls through all the files. The solution is to add the following in your .vimrc file. +I use vim coupled with the SuperTab plugin for my text editing and auto-completion needs. In some vim setups (E.g. Mac OS X) it is configured by default to search included files when completing words. This sounds like a useful feature but it turns out not to be. It has a habit of searching the include files of system libraries and modules, the keywords of which you rarely want. Its also quite a slow operation as it trawls through all the files. The solution is to add the following in your `.vimrc` file. -set complete=.,w,b,u,t + set complete=.,w,b,u,t -This is the same set of flags as the default except with the 'i' option removed. See the help for the 'complete' option for an explanation of what each flag means. \ No newline at end of file +This is the same set of flags as the default except with the '`i`' option removed. See the help for the 'complete' option for an explanation of what each flag means. \ No newline at end of file diff --git a/output/css/screen.css b/output/css/screen.css index 62a3485..3bf13c3 100644 --- a/output/css/screen.css +++ b/output/css/screen.css @@ -11,7 +11,7 @@ body { p,li,blockquote { line-height: 1.2; } -p { +p,pre { margin: 0 0 1em 0; }