Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bylatt/quickpick-files.vim
File picker for quickpick.vim
https://github.com/bylatt/quickpick-files.vim
quickpickvim
Last synced: about 1 month ago
JSON representation
File picker for quickpick.vim
- Host: GitHub
- URL: https://github.com/bylatt/quickpick-files.vim
- Owner: bylatt
- License: mit
- Created: 2019-01-10T05:47:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-18T05:00:45.000Z (almost 5 years ago)
- Last Synced: 2024-08-07T18:47:50.032Z (5 months ago)
- Topics: quickpickvim
- Language: Vim script
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# quickpick-files.vim
Files picker for [quickpick.vim](https://github.com/prabirshrestha/quickpick.vim).## Install
```vim
Plug 'prabirshrestha/quickpick.vim'
Plug 'clozed2u/quickpick-files.vim'
```## Finder
By default `quickpick-files.vim` use [fd](https://github.com/sharkdp/fd) as a finder command, so you need `fd` command in your `$PATH`.You can override finder command by set `g:quickpick_files_command` variable to your prefer command, for example if you want to use [rg](https://github.com/BurntSushi/ripgrep) instead of [fd](https://github.com/sharkdp/fd) you can put line below into your vim config
```vim
let g:quickpick_files_command = 'rg --files'
```## Usage
```vim
:Pfiles
```