diff --git a/nvim/plugin/editing.vim b/nvim/plugin/editing.vim index 36d4220..e59bd3c 100644 --- a/nvim/plugin/editing.vim +++ b/nvim/plugin/editing.vim @@ -145,6 +145,9 @@ set commentstring=//%s " Repeat the last edit n times, taken from nnoremap . execute "normal!" repeat(".", v:count1) + xnoremap A :normal! A + xnoremap I :normal! I + " }}} diff --git a/python/flake8.ini b/python/flake8.ini index 041fdb7..a1cbee9 100644 --- a/python/flake8.ini +++ b/python/flake8.ini @@ -31,6 +31,14 @@ ignore = E121 # Hanging indent on a continuation line is unaligned E131 + # Whitespace before a comma + E203 + # Multiple spaces before an operator + E221 + # Multiple spaces after an operator + E222 + # Whitespace after a comma + E241 # Import not at the top of the file E402 # Line too long