Skip to content
New issue

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

Let [e and ]e work on closed fold in normal mode #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 16 additions & 1 deletion plugin/unimpaired.vim
Expand Up @@ -144,7 +144,22 @@ nmap ]<Space> <Plug>unimpairedBlankDown

function! s:Move(cmd, count, map) abort
normal! m`
exe 'move'.a:cmd.a:count

let range = ''
let address = ''

if foldclosed(line('.')) >= 0
let start_fold = foldclosed(line('.'))
let end_fold = foldclosedend(line('.'))

let range = start_fold.','.end_fold

if a:map =~ 'Down'
let address = end_fold
endif
endif

exe range.'move'.address.a:cmd.a:count
norm! ``
silent! call repeat#set("\<Plug>unimpairedMove".a:map, a:count)
endfunction
Expand Down