We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Welcome to the vim-cute-python wiki!
This function was provided by sethwoodworth and will turn concealing on/off:
function! ToggleConceal() if &conceallevel != '0' set conceallevel=0 echo "ConcealLevel off" else set conceallevel=2 echo "ConcealLevel on" endif endfunction
You can then bind this to a key, e.g. F4:
nnoremap <F4> :call ToggleConceal()