aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Fürmetz <fuermetz@mailbox.org>2018-11-15 22:48:58 +0100
committerGitHub <noreply@github.com>2018-11-15 22:48:58 +0100
commitbe345faf45a1faf56e8665289bc374c168799892 (patch)
tree04828cc3a7c5931866e62fee5db84b4f64c37930
parent1dfbd1d5fc3cbd13fe54faccfa6bb2e1880abc9e (diff)
parent74e9f755b210c8ad43656af3fa14f790f39853d9 (diff)
Merge pull request #31 from deb0ch/improve-docs
improve docs
-rw-r--r--README.md8
-rw-r--r--vterm.el10
2 files changed, 12 insertions, 6 deletions
diff --git a/README.md b/README.md
index 0264547..be29e16 100644
--- a/README.md
+++ b/README.md
@@ -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:
diff --git a/vterm.el b/vterm.el
index 791efb2..be41caf 100644
--- a/vterm.el
+++ b/vterm.el
@@ -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)