Skip to content

Commit

Permalink
Handles initial issue of tweekmonster#35.
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke committed Dec 1, 2016
1 parent 968f7bc commit f5b4def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/braceless/python/format.vim
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function! s:clean_slice(match) abort
if s:clean_skip()
return a:match
endif
let ret = substitute(a:match, '\s*\([+\-\*/%]\)\s*', '\1', 'g')
let ret = substitute(a:match, '\s\{2,}\([+\-\*/%]\)\s\{2,}', '\1', 'g')
if col('.') < s:col_track
let s:col_track -= len(a:match) - len(ret)
endif
Expand Down

0 comments on commit f5b4def

Please sign in to comment.