We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I currently use these options for braceless:
let g:braceless_block_key = 'i' augroup MyBraceless autocmd! autocmd User BracelessInit nunmap J autocmd User BracelessInit iunmap <cr> autocmd FileType python BracelessEnable +indent augroup END
Given this python code:
if (test == 0
Inserting <cr>and at end of line now gives:
<cr>and
if (test == 0 \ and
instead of what I would expect:
if (test == 0 and
I'm curious if this is by design or if I am doing something wrong, or if this is a bug.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I currently use these options for braceless:
Given this python code:
Inserting
<cr>and
at end of line now gives:instead of what I would expect:
I'm curious if this is by design or if I am doing something wrong, or if this is a bug.
The text was updated successfully, but these errors were encountered: