diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-11-25 01:00:18 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-11-25 13:52:06 +0000 |
| commit | 49931fbf056ec1036693c669cec8cde4ea8c95fe (patch) | |
| tree | 6adb76a625aa106d6d32a3d9796060a9b75312a5 /src/normal.cc | |
| parent | 0272da65c0abf1f7dd3ab214638b6a4d5d390cc4 (diff) | |
Separate events between normal and urgent ones
Run urgent ones while executing %sh blocks.
Fixes #236
Diffstat (limited to 'src/normal.cc')
| -rw-r--r-- | src/normal.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/normal.cc b/src/normal.cc index 18c2fe8b..3c4528e0 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -18,9 +18,6 @@ #include "user_interface.hh" #include "window.hh" -#include <signal.h> -#include <unistd.h> - namespace Kakoune { @@ -1400,8 +1397,6 @@ KeyMap keymap = { Key::PageUp, { "scroll one page up", scroll<Key::PageUp> } }, { Key::PageDown, { "scroll one page down", scroll<Key::PageDown> } }, - - { ctrl('c'), { "interupt", [](Context&, int) { killpg(getpgrp(), SIGINT); } } }, }; } |
