FzfCommand
fzf-preview.vim が提供するコマンドを定義するオブジェクト
code:type/fzf.vim
export type FzfCommand = {
commandName: FzfCommandName
sourceFunc: (sourceFuncArgs: SourceFuncArgs) => Promise<ResourceLines>
convertLine: (line: SelectedLine) => SelectedLine
sourceFuncArgsParser: (args: string) => SourceFuncArgs
vimCommandOptions: CommandOptions
defaultFzfOptionFunc: () =>
defaultProcessesName: ProcessesName
enableConvertForFzf: boolean
enableDevIcons: boolean
enablePostProcessCommand: boolean
beforeCommandHook?: (args: string) => void
}