Compare commits

..

3 commits

Author SHA1 Message Date
pull[bot]
d4a01a8161
Merge pull request #285 from dmitmel/master
[pull] master from dmitmel:master
2021-06-09 16:43:04 +00:00
Dmytro Meleshko
e5a5579a10 [python] disable some more whitespace-related lints 2021-06-09 19:37:36 +03:00
Dmytro Meleshko
656b1d74a3 [nvim] implement the A and I mappings for Visual mode 2021-06-09 19:35:11 +03:00
2 changed files with 11 additions and 0 deletions

View file

@ -145,6 +145,9 @@ set commentstring=//%s
" Repeat the last edit n times, taken from <https://gist.github.com/romainl/db725db7babc84a9a6436180cedee188> " Repeat the last edit n times, taken from <https://gist.github.com/romainl/db725db7babc84a9a6436180cedee188>
nnoremap . <Cmd>execute "normal!" repeat(".", v:count1)<CR> nnoremap . <Cmd>execute "normal!" repeat(".", v:count1)<CR>
xnoremap A :normal! A
xnoremap I :normal! I
" }}} " }}}

View file

@ -31,6 +31,14 @@ ignore =
E121 E121
# Hanging indent on a continuation line is unaligned # Hanging indent on a continuation line is unaligned
E131 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 # Import not at the top of the file
E402 E402
# Line too long # Line too long