diff options
| author | Lukas Fürmetz <fuermetz@mailbox.org> | 2018-11-15 22:48:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-15 22:48:58 +0100 |
| commit | be345faf45a1faf56e8665289bc374c168799892 (patch) | |
| tree | 04828cc3a7c5931866e62fee5db84b4f64c37930 | |
| parent | 1dfbd1d5fc3cbd13fe54faccfa6bb2e1880abc9e (diff) | |
| parent | 74e9f755b210c8ad43656af3fa14f790f39853d9 (diff) | |
Merge pull request #31 from deb0ch/improve-docs
improve docs
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | vterm.el | 10 |
2 files changed, 12 insertions, 6 deletions
@@ -10,16 +10,18 @@ report a bug! # Installation -You need to have `libvterm` installed, on Linux use your distros package manager, for example: +First, you need to have `libvterm` installed in your system. + +**On Ubuntu:** ``` sudo apt-get install libvterm ``` -On MAC OS X: +**On macOS:** ``` -hombrew install libvterm +brew install libvterm ``` Then clone the repository: @@ -48,8 +48,9 @@ (defcustom vterm-keymap-exceptions '("C-c" "C-x" "C-u" "C-g" "C-h" "M-x" "M-o" "C-v" "M-v") "Exceptions for vterm-keymap. -If you use a keybinding with a prefix-key that prefix-key cannot -be send to the terminal." +If you use a keybinding with a prefix-key, add that prefix-key to +this list. Note that after doing so that prefix-key cannot be sent +to the terminal anymore." :type '(repeat string) :group 'vterm) @@ -57,7 +58,10 @@ be send to the terminal." "Shell exit hook. This hook applies only to new vterms, created after setting this -value with `add-hook'." +value with `add-hook'. + +Note that this hook will not work if another package like +`shell-pop' sets its own sentinel to the `vterm' process." :type 'hook :group 'vterm) |
