2013-05-18 20:49:09 +00:00
|
|
|
Editor
|
|
|
|
======
|
|
|
|
|
|
|
|
Sets key bindings.
|
|
|
|
|
|
|
|
Settings
|
|
|
|
--------
|
|
|
|
|
|
|
|
### Key bindings
|
|
|
|
|
2013-05-18 23:23:03 +00:00
|
|
|
To enable key bindings, add the following to *zpreztorc*, and replace 'bindings'
|
|
|
|
with 'emacs' or 'vi'.
|
2013-05-18 20:49:09 +00:00
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor' key-bindings 'bindings'
|
|
|
|
```
|
2013-05-18 20:49:09 +00:00
|
|
|
|
|
|
|
### Dot Expansion
|
|
|
|
|
|
|
|
To enable the auto conversion of .... to ../.., add the following to
|
|
|
|
*zpreztorc*.
|
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor' dot-expansion 'yes'
|
|
|
|
```
|
2013-05-18 20:49:09 +00:00
|
|
|
|
2017-04-02 19:09:58 +00:00
|
|
|
### PS Context
|
|
|
|
|
|
|
|
To enable the prompt context to be set, add the following to your
|
|
|
|
*zpreztorc*.
|
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor' ps-context 'yes'
|
|
|
|
```
|
2017-04-02 19:09:58 +00:00
|
|
|
|
2013-05-18 20:49:09 +00:00
|
|
|
Theming
|
|
|
|
-------
|
|
|
|
|
|
|
|
To indicate when the editor is in the primary keymap (emacs or viins), add
|
|
|
|
the following to your `theme_prompt_setup` function.
|
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:primary' format '>>>'
|
|
|
|
```
|
2013-05-18 20:49:09 +00:00
|
|
|
|
|
|
|
To indicate when the editor is in the primary keymap (emacs or viins) insert
|
|
|
|
mode, add the following to your `theme_prompt_setup` function.
|
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:primary:insert' format 'I'
|
|
|
|
```
|
2013-05-18 20:49:09 +00:00
|
|
|
|
|
|
|
To indicate when the editor is in the primary keymap (emacs or viins) overwrite
|
|
|
|
mode, add the following to your `theme_prompt_setup` function.
|
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:primary:overwrite' format 'O'
|
|
|
|
```
|
2013-05-18 20:49:09 +00:00
|
|
|
|
|
|
|
To indicate when the editor is in the alternate keymap (vicmd), add the
|
|
|
|
following to your `theme_prompt_setup` function.
|
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:alternate' format '<<<'
|
|
|
|
```
|
2013-05-18 20:49:09 +00:00
|
|
|
|
|
|
|
To indicate when the editor is completing, add the following to your
|
|
|
|
`theme_prompt_setup` function.
|
|
|
|
|
2017-07-21 01:07:29 +00:00
|
|
|
```sh
|
|
|
|
zstyle ':prezto:module:editor:info:completing' format '...'
|
|
|
|
```
|
2013-05-18 20:49:09 +00:00
|
|
|
|
|
|
|
Then add `$editor_info[context]`, where context is *keymap*, *insert*, or
|
2014-10-06 20:50:03 +00:00
|
|
|
*overwrite*, to `$PROMPT` or `$RPROMPT`.
|
2013-05-18 20:49:09 +00:00
|
|
|
|
2017-07-06 06:05:31 +00:00
|
|
|
Convenience Functions
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
### bindkey-all
|
|
|
|
|
|
|
|
Provides a function `bindkey-all` which can be useful for checking how all of the
|
|
|
|
keys are bound. Normal `bindkey` command will only list the keys bound for one
|
|
|
|
keymap, which is not as useful if you want to grep through the output. The
|
|
|
|
keymap's names go to stderr so when you grep through bindkey-all's output you
|
|
|
|
will still see the headings and can tell which keymap each binding goes to.
|
|
|
|
|
|
|
|
It will also pass through arguments so you can use bindkey-all to set bindings
|
|
|
|
for all keymaps at once. If provided arguments it will *not* print out the
|
2017-08-16 18:47:58 +00:00
|
|
|
names of each of the keymaps, and just run the command for each keymap.
|
2017-07-06 06:05:31 +00:00
|
|
|
|
2013-05-18 20:49:09 +00:00
|
|
|
Authors
|
|
|
|
-------
|
|
|
|
|
|
|
|
*The authors of this module should be contacted via the [issue tracker][1].*
|
|
|
|
|
|
|
|
- [Sorin Ionescu](https://github.com/sorin-ionescu)
|
|
|
|
|
|
|
|
[1]: https://github.com/sorin-ionescu/oh-my-zsh/issues
|