]> git.madduck.net Git - etc/vim.git/blobdiff - README.mdown

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

remove commmand settings from config options
[etc/vim.git] / README.mdown
index 5b83c992e68f2090f39c9f5163888f99f8060b0d..2f8c5b63b288bfe6bbbc73bd31d286d7222837a2 100644 (file)
@@ -39,21 +39,9 @@ the `<F7>` key if so.  For example, to remap it to `<F3>` instead, use:
 
     autocmd FileType python map <buffer> <F3> :call Flake8()<CR>
 
-To add builtins, in your .vimrc:
+For flake8 configuration options please consult the following page:
 
-    let g:flake8_builtins="_,apply"
-
-To ignore errors, in your .vimrc:
-
-    let g:flake8_ignore="E501,W293"
-
-If you want to change the max line length for PEP8:
-
-    let g:flake8_max_line_length=99
-
-To set the maximum [McCabe complexity](https://en.wikipedia.org/wiki/Cyclomatic_complexity) before a warning is issued:
-
-    let g:flake8_max_complexity=10
+http://flake8.readthedocs.org/en/latest/config.html
 
 To customize the location of your flake8 binary, set `g:flake8_cmd`:
 
@@ -92,7 +80,7 @@ the empty string disables it. Ex.:
     flake8_complexity_marker=''  " disable McCabe complexity warnings
     flake8_naming_marker=''      " disable naming warnings
 
-To customize the colors used for markers, define the highligth groups, `Flake8_Error`,
+To customize the colors used for markers, define the highlight groups, `Flake8_Error`,
 `Flake8_Warning`, `Flake8_PyFlake`, `Flake8_Complexity`, `Flake8_Naming`:
 
     " to use colors defined in the colorscheme
@@ -158,3 +146,9 @@ a autoload file. Added:
 1.1: Added `g:flake8_ignore` option.
 
 1.0: Initial version.
+
+
+License
+-------
+
+Liberally licensed under BSD terms.