Guest User

Untitled

a guest
Jul 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. let s:direnter = {
  2. \ 'description' : 'enter directory',
  3. \ 'is_quit' : 0,
  4. \ }
  5. function! s:direnter.func(candidate)
  6. call unite#take_action('narrow', a:candidate)
  7. call unite#redraw()
  8. stopinsert
  9. 3
  10. endfunction
  11. call unite#custom_action('directory', 'enter', s:direnter)
  12. unlet s:direnter
  13. call unite#custom_default_action('directory', 'enter')
Add Comment
Please, Sign In to add comment