mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-25 12:30:22 +00:00
add keybind precision vim readme (#298)
This commit is contained in:
parent
6b920cbe76
commit
6e5362e76e
2 changed files with 13 additions and 6 deletions
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Vim doc about mailbox pickers [#298]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Some emojis break the table layout [#300]
|
- Some emojis break the table layout [#300]
|
||||||
|
@ -456,6 +460,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
[#280]: https://github.com/soywod/himalaya/issues/280
|
[#280]: https://github.com/soywod/himalaya/issues/280
|
||||||
[#288]: https://github.com/soywod/himalaya/issues/288
|
[#288]: https://github.com/soywod/himalaya/issues/288
|
||||||
[#289]: https://github.com/soywod/himalaya/issues/289
|
[#289]: https://github.com/soywod/himalaya/issues/289
|
||||||
|
[#298]: https://github.com/soywod/himalaya/issues/298
|
||||||
[#300]: https://github.com/soywod/himalaya/issues/300
|
[#300]: https://github.com/soywod/himalaya/issues/300
|
||||||
[#303]: https://github.com/soywod/himalaya/issues/303
|
[#303]: https://github.com/soywod/himalaya/issues/303
|
||||||
[#305]: https://github.com/soywod/himalaya/issues/305
|
[#305]: https://github.com/soywod/himalaya/issues/305
|
||||||
|
|
|
@ -3,9 +3,10 @@
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
First you need to install and configure the [himalaya
|
First you need to install and configure the [himalaya
|
||||||
CLI](https://github.com/soywod/himalaya#installation). Then you can install
|
CLI](https://github.com/soywod/himalaya#installation). Then you can
|
||||||
this plugin with your favorite plugin manager. For example with
|
install this plugin with your favorite plugin manager. For example
|
||||||
[vim-plug](https://github.com/junegunn/vim-plug), add to your `.vimrc`:
|
with [vim-plug](https://github.com/junegunn/vim-plug), add to your
|
||||||
|
`.vimrc`:
|
||||||
|
|
||||||
```viml
|
```viml
|
||||||
Plug 'soywod/himalaya', {'rtp': 'vim'}
|
Plug 'soywod/himalaya', {'rtp': 'vim'}
|
||||||
|
@ -31,14 +32,15 @@ set hidden
|
||||||
let g:himalaya_mailbox_picker = 'native' | 'fzf' | 'telescope'
|
let g:himalaya_mailbox_picker = 'native' | 'fzf' | 'telescope'
|
||||||
```
|
```
|
||||||
|
|
||||||
Defines the provider used for picking mailboxes:
|
Defines the provider used for picking mailboxes (default keybind:
|
||||||
|
`gm`):
|
||||||
|
|
||||||
- `native`: a vim native input
|
- `native`: a vim native input
|
||||||
- `fzf`: https://github.com/junegunn/fzf.vim
|
- `fzf`: https://github.com/junegunn/fzf.vim
|
||||||
- `telescope`: https://github.com/nvim-telescope/telescope.nvim
|
- `telescope`: https://github.com/nvim-telescope/telescope.nvim
|
||||||
|
|
||||||
If no value given, the first loaded (and available) provider will be used (fzf
|
If no value given, the first loaded (and available) provider will be
|
||||||
> telescope > native).
|
used (fzf > telescope > native).
|
||||||
|
|
||||||
### Telescope preview
|
### Telescope preview
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue