GitXplorerGitXplorer
L

fern-mapping-fzf.vim

public
25 stars
2 forks
1 issues

Commits

List of commits on branch master.
Verified
9b124fbbb72fea3098ee4b11dbc7b45945978913

Update fern-mapping-fzf.txt

LLumaKernel committed 3 years ago
Verified
2804855d2ad87638c984b6e6ab04b1d54b093771

fix indentation

LLumaKernel committed 4 years ago
Verified
2bd1b12382275f5edb0209604ab0b784404ca746

Fix readme

LLumaKernel committed 4 years ago
Verified
67b23d6691ec15c06e57f0bc6809282baaac7293

Merge pull request #8 from LumaKernel/feat-root

LLumaKernel committed 4 years ago
Unverified
b9da27b8df712cbbee87ab7a8948348aac2347d6

feat: from root mode

LLumaKernel committed 4 years ago
Verified
d4f5275a29424df0bfeebd692e7a397cf54fe1ad

Fix indentation

LLumaKernel committed 4 years ago

README

The README file for this repository.

fern-mapping-fzf.vim

fern plugin

Dependencies

  • lambdalisue/fern.vim
  • junegunn/fzf
  • For Windows users, sh and find command compatible with UNIX-like.
    • You can find them from like Cygwin. (Note that some tools are not working fine.)

Installation

Example for dein with TOML.

[[plugins]]
repo = 'LumaKernel/fern-mapping-fzf.vim'
depends = ['fzf', 'fern.vim']

Usage

Mapping Action Description
ff fzf-files Fzf for files
fd fzf-dirs Fzf for directories
fa fzf-both Fzf for both files and directories
frf fzf-root-files Fzf for files from root
frd fzf-root-dirs Fzf for directories from root
fra fzf-root-both Fzf for both files and directories from root

More details, see :help fern-mapping-fzf .

Screenshot

fern-mapping-fzf

Sample settings

FZF multiple and mark on Fern

function! Fern_mapping_fzf_customize_option(spec)
    let a:spec.options .= ' --multi'
    " Note that fzf#vim#with_preview comes from fzf.vim
    if exists('*fzf#vim#with_preview')
        return fzf#vim#with_preview(a:spec)
    else
        return a:spec
    endif
endfunction

function! Fern_mapping_fzf_before_all(dict)
    if !len(a:dict.lines)
        return
    endif
    return a:dict.fern_helper.async.update_marks([])
endfunction

function! s:reveal(dict)
    execute "FernReveal -wait" a:dict.relative_path
    execute "normal \<Plug>(fern-action-mark:set)"
endfunction

let g:Fern_mapping_fzf_file_sink = function('s:reveal')
let g:Fern_mapping_fzf_dir_sink = function('s:reveal')

License

MIT